/* Focus Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Root Variables */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #1f2937;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --bg-dark: #0f172a;
  --bg-darker: #0a0e27;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --border-color: #1e293b;
  --spotify-green: #1db954;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body.focus-app {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a2942 50%, #0f172a 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navigation */
nav {
  background: rgba(12, 12, 12, 0.95);
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  gap: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-100%);
  transition: all 200ms ease-out;
  will-change: transform, opacity;
  pointer-events: none;
}

.nav-trigger:hover ~ nav,
nav:hover,
nav:focus-within {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

nav a.active {
  background: linear-gradient(45deg, #ffd700, #ffb347);
  color: #000;
}

/* Main Container */
.focus-container {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.focus-header {
  text-align: center;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out;
}

.focus-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 800;
}

.focus-header .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Card Styling */
.timer-card,
.music-card,
.settings-card,
.stats-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.6s ease-out;
}

.timer-card h2,
.music-card h2,
.settings-card h2,
.stats-card h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 700;
}

.music-card h3 {
  font-size: 18px;
  margin: 24px 0 16px 0;
  color: var(--text-primary);
  font-weight: 600;
}

/* Timer Section */
.timer-section {
  width: 100%;
}

.timer-display {
  font-size: 96px;
  font-weight: 900;
  text-align: center;
  margin: 40px 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 8px;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  font-family: 'Courier New', monospace;
  animation: pulse 2s ease-in-out infinite;
}

.timer-separator {
  display: inline-block;
  animation: blink 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes blink {
  0%, 49%, 100% { opacity: 1; }
  50%, 99% { opacity: 0.3; }
}

/* Timer Presets */
.timer-presets {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.preset-btn {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.preset-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.preset-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background: rgba(99, 102, 241, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-spotify {
  background: var(--spotify-green);
  color: white;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(29, 185, 84, 0.3);
}

.btn-icon {
  font-size: 18px;
}

/* Timer Controls */
.timer-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.timer-controls .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

/* Session Info */
.session-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.session-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}

/* Music Section */
.music-section {
  width: 100%;
}

/* Now Playing */
.now-playing {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(99, 102, 241, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.now-playing-album {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.now-playing-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.now-playing-info {
  flex: 1;
  min-width: 0;
}

.track-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-name {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Player Controls */
.player-controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: rgba(99, 102, 241, 0.3);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.control-btn.play-pause {
  width: 72px;
  height: 72px;
  background: var(--primary-color);
  border-color: var(--primary-color);
  font-size: 28px;
}

.control-btn.play-pause:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Volume Control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.volume-control label {
  font-weight: 600;
  min-width: 60px;
}

.volume-slider {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
}

#volume-value {
  min-width: 40px;
  text-align: right;
  color: var(--primary-color);
  font-weight: 600;
}

/* Spotify Connect */
.spotify-connect {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.spotify-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.spotify-status.connected {
  color: var(--spotify-green);
}

.spotify-icon {
  font-size: 20px;
}

/* Playlists Section */
.playlists-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.playlist-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.playlist-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.playlist-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.playlist-icon {
  font-size: 28px;
}

/* Settings Section */
.settings-section {
  width: 100%;
}

.setting-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
}

.setting-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.setting-label input[type="number"] {
  width: 60px;
  padding: 6px 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
}

/* Stats Section */
.stats-section {
  width: 100%;
}

/* Tasks Section */
.tasks-section {
  width: 100%;
}

.tasks-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.tasks-card h2 {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
}

.focus-tasks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.focus-tasks-list::-webkit-scrollbar {
  width: 6px;
}

.focus-tasks-list::-webkit-scrollbar-track {
  background: rgba(99, 102, 241, 0.1);
  border-radius: 3px;
}

.focus-tasks-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.focus-tasks-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.focus-task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.focus-task-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.task-checkbox {
  flex-shrink: 0;
  padding-top: 2px;
}

.focus-task-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.task-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.task-text {
  color: var(--text-primary);
  font-weight: 500;
  word-break: break-word;
  line-height: 1.4;
}

.task-text.priority-high {
  color: #ef4444;
  font-weight: 600;
}

.task-text.priority-medium {
  color: #f59e0b;
  font-weight: 600;
}

.task-text.priority-low {
  color: #10b981;
}

.task-due-date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.no-tasks-message {
  text-align: center;
  color: var(--text-secondary);
  padding: 32px 16px;
  font-style: italic;
}

.tasks-action-footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}

.tasks-action-footer .btn {
  padding: 10px 16px;
  font-size: 14px;
}

.stats-section {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.stat-box {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Footer */
.focus-footer {
  text-align: center;
  padding: 40px 0;
}

.back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-link:hover {
  color: var(--primary-dark);
  transform: translateX(-4px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .focus-header h1 {
    font-size: 32px;
  }

  .timer-display {
    font-size: 64px;
  }

  .timer-card,
  .music-card,
  .settings-card,
  .stats-card {
    padding: 20px;
  }

  .focus-container {
    padding: 20px 16px;
    gap: 24px;
  }

  .timer-presets {
    gap: 8px;
  }

  .preset-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .now-playing {
    flex-direction: column;
    text-align: center;
  }

  .playlist-buttons {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .session-info {
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  nav {
    flex-wrap: wrap;
    padding: 8px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 12px;
  }

  .focus-header h1 {
    font-size: 24px;
  }

  .timer-display {
    font-size: 48px;
  }

  .timer-controls .btn {
    padding: 10px 16px;
  }

  .playlist-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Reminder Modal Styles */
.reminder-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.reminder-modal.open {
  display: flex;
}

.reminder-modal-content {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.3s ease;
}

.reminder-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.reminder-modal-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.reminder-modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.reminder-modal-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.reminder-modal-body {
  padding: 20px;
}

.reminder-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reminder-form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reminder-input {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
}

.reminder-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.reminder-textarea {
  min-height: 80px;
  resize: vertical;
}

.reminder-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.reminder-modal-footer .btn {
  padding: 10px 20px;
  font-size: 13px;
  flex: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Timezone Modal Styles */
.timezone-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.timezone-modal.open {
  display: flex;
}

.timezone-modal-content {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.3s ease;
}

.-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.timezone-modal-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.timezone-modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.timezone-modal-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.timezone-modal-body {
  padding: 24px;
}

.timezone-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.timezone-display {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timezone-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.timezone-offset {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.timezone-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.timezone-options {
  margin-bottom: 16px;
}

.timezone-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timezone-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timezone-input {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  max-height: 300px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

/* Custom dropdown arrow for .timezone-input */
.timezone-input {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.timezone-input:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
}

.timezone-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Style option elements inside select */
.timezone-input option {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 8px 12px;
}

/* Style selected option */
.timezone-input option:checked {
  background: linear-gradient(var(--primary-color), var(--primary-color));
  background-color: var(--primary-color);
  color: white;
}

.timezone-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.timezone-modal-footer .btn {
  padding: 10px 20px;
  font-size: 13px;
  flex: 1;
  min-width: 150px;
}

