/* Volume Slider Bar */
.volume-bar-container {
  width: 100%;
  max-width: 364px;
  margin: 18px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 10px 18px;
  gap: 12px;
}
.volume-bar-container label {
  font-size: 1.08rem;
  color: #b6a200;
  font-weight: bold;
  margin-right: 8px;
}
.volume-slider {
  width: 300px;
  accent-color: #ffe388;
  height: 4px;
}
#timer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fffbe6 0%, #ffe388 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(255,200,0,0.10);
  padding: 32px 24px 28px 24px;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
  position: relative;
}

#progress-bar-wrap {
  width: 100%;
  height: 32px;
  background: #fff7b2;
  border-radius: 10px;
  margin: 18px 0 10px 0;
  overflow: hidden;
}
#progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #ffe388 0%, #b6e388 100%);
  transition: width 0.3s cubic-bezier(.4,2,.6,1);
}
#preset-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
#preset-buttons button {
  border: 2.5px solid #fff7b2;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(255,200,0,0.10);
  background: #ffe388;
  color: #222;
  border-radius: 18px;
  padding: 10px 18px;
  transition: background 0.2s, box-shadow 0.2s;
}
#preset-buttons button:hover {
  background: #fff7b2 !important;
  box-shadow: 0 4px 16px rgba(255,200,0,0.18);
}
#custom-time-input input[type="number"] {
  font-size: 1.1rem;
  text-align: center;
  background: #f7faff;
  border: 1.5px solid #b6d8ff;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  margin-right: 2px;
}
#custom-time-input input[type="number"]:focus {
  border: 1.5px solid #4fa3ff;
  box-shadow: 0 0 4px #b6d8ff;
  background: #eaf6ff;
}
#custom-time-input {
  margin-bottom: 20px;
}
/* Main stylesheet for EggTimer app */
/* See TASK-project-structure.md for structure guidance */

body {
  font-family: sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
}

#app {
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#timer-display {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #222;
  background: #f3f3f3;
  border-radius: 8px;
  padding: 24px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
}

#timer-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

#timer-controls button {
  background: #eee;
  color: #222;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: background 0.2s;
}
#timer-controls button:hover {
  background: #d1eaff;
}
