/* [project]/app/globals.css [app-client] (css) */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --danger: #dc2626;
  --success: #16a34a;
  --bg: #f8fafc;
  --card-bg: #fff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --input-bg: #fff;
  --shadow: 0 1px 3px #0000001a;
  --radius: 8px;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
}

[data-theme="dark"] {
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --danger: #ef4444;
  --success: #22c55e;
  --bg: #0f172a;
  --card-bg: #1e293b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #334155;
  --input-bg: #1e293b;
  --shadow: 0 1px 3px #0000004d;
  --error-bg: #371520;
  --error-border: #5c2133;
  --success-bg: #14261a;
  --success-border: #1a3a24;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  transition: opacity .15s, filter .15s;
}

button:hover:not(:disabled) {
  filter: brightness(.92);
}

button:active:not(:disabled) {
  filter: brightness(.85);
}

a[style*="card-bg"]:hover, div[style*="card-bg"]:hover {
  filter: brightness(.98);
}

button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex !important;
  }

  .mobile-menu-btn, .mobile-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr !important;
    gap: .5rem !important;
  }

  .schedule-day {
    flex-direction: row !important;
    min-height: auto !important;
  }

  .schedule-day-header {
    writing-mode: horizontal-tb !important;
    min-width: 70px !important;
    padding: .75rem !important;
  }

  .schedule-day-content {
    flex-direction: row !important;
    align-items: center !important;
    min-height: auto !important;
    padding: .5rem !important;
  }

  .schedule-day-content img {
    object-fit: cover !important;
    width: 80px !important;
    max-height: 80px !important;
  }
}

[data-theme="dark"] img[style*="background: #f5f5f5"], [data-theme="dark"] div[style*="background: #f5f5f5"] {
  background-color: #1e293b !important;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/