/* ============================================================
   Bozeman Smiles Dashboard — Liquid Glass Theme
   Matched from office.drprosk.com portal
   ============================================================ */

/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #eef1f5;
  color: #1a1a2e;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(168,198,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(200,168,255,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(168,235,255,0.2) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* === Glass Card (base component) === */
.glass {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04), 0 0 0 1px rgba(255,255,255,0.4) inset;
}

.glass:hover {
  background: rgba(255,255,255,0.65);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  border-color: rgba(168,198,255,0.5);
}

.glass-strong {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

/* === Typography === */
h1 { font-size: 2.2rem; font-weight: 700; color: #1a1a2e; letter-spacing: -0.5px; }
h2 { font-size: 1.5rem; font-weight: 600; color: #1a1a2e; }
h3 { font-size: 1.2rem; font-weight: 600; color: #1a1a2e; }
.text-muted { color: #6b7280; }
.text-sm { font-size: 0.85rem; }
.text-md { font-size: 0.95rem; }

/* === Form Elements === */
.glass-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200,210,230,0.6);
  border-radius: 12px;
  color: #1a1a2e;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.glass-input:focus {
  border-color: rgba(100,140,255,0.6);
  outline: none;
  background: rgba(255,255,255,0.7);
}

.glass-input::placeholder {
  color: #9ca3af;
}

/* === Buttons === */
.btn-primary {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  background: rgba(79,109,245,0.85);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-primary:hover {
  background: rgba(79,109,245,1);
  box-shadow: 0 4px 16px rgba(79,109,245,0.3);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  padding: 10px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s;
  background: rgba(200,210,230,0.4);
  color: #6b7280;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(200,210,230,0.6);
  color: #1a1a2e;
}

.btn-danger {
  padding: 10px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s;
  background: rgba(239,83,80,0.15);
  color: #ef5350;
}

.btn-danger:hover {
  background: rgba(239,83,80,0.25);
}

/* === Grid Layout === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.grid-2 { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* === Dashboard Layout === */
.dashboard-wrap {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Sidebar */
.sidebar {
  width: 260px;
  min-height: 100vh;
  padding: 24px 16px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  margin-bottom: 28px;
}

.sidebar-logo .logo-icon {
  font-size: 1.8rem;
}

.sidebar-logo h2 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-logo .text-muted {
  font-size: 0.75rem;
  font-weight: 400;
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.92rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-item:hover {
  background: rgba(168,198,255,0.15);
  color: #1a1a2e;
}

.nav-item.active {
  background: rgba(255,255,255,0.55);
  color: #1a1a2e;
  font-weight: 600;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-item .nav-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.nav-section {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  padding: 16px 14px 6px;
}

.sidebar-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(200,210,230,0.3);
  margin-top: 12px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.user-badge:hover {
  background: rgba(168,198,255,0.12);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79,109,245,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #4f6df5;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  font-size: 0.72rem;
  color: #9ca3af;
  text-transform: capitalize;
}

/* Main content area */
.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 30px;
  max-width: calc(100% - 260px);
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.page-header p {
  color: #6b7280;
  font-size: 0.92rem;
}

/* === Module Cards (dashboard home) === */
.module-card {
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.module-card:hover {
  transform: translateY(-3px);
}

.module-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.module-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.module-desc {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.4;
}

/* === Stat Cards === */
.stat-card {
  padding: 20px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 4px;
}

.stat-change {
  font-size: 0.78rem;
  margin-top: 8px;
  font-weight: 500;
}

.stat-change.up { color: #22c55e; }
.stat-change.down { color: #ef5350; }

/* === Tables === */
.glass-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.glass-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  border-bottom: 1px solid rgba(200,210,230,0.4);
}

.glass-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200,210,230,0.2);
}

.glass-table tr:last-child td {
  border-bottom: none;
}

.glass-table tr:hover td {
  background: rgba(168,198,255,0.06);
}

/* === Badges / Tags === */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-blue { background: rgba(79,109,245,0.12); color: #4f6df5; }
.badge-green { background: rgba(34,197,94,0.12); color: #16a34a; }
.badge-amber { background: rgba(245,158,11,0.12); color: #d97706; }
.badge-red { background: rgba(239,83,80,0.12); color: #ef5350; }
.badge-gray { background: rgba(107,114,128,0.12); color: #6b7280; }

/* === Overlay / Modal === */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.overlay.show { display: flex; }

.modal {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 28px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

/* === Notifications / Toast === */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: rgba(34,197,94,0.9);
  backdrop-filter: blur(10px);
  color: #fff;
}

.toast-error {
  background: rgba(239,83,80,0.9);
  backdrop-filter: blur(10px);
  color: #fff;
}

.toast-info {
  background: rgba(79,109,245,0.9);
  backdrop-filter: blur(10px);
  color: #fff;
}

/* === Loading spinner === */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(79,109,245,0.2);
  border-top-color: rgba(79,109,245,0.8);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* === Mobile responsive === */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    max-width: 100%;
    padding: 20px;
  }

  .grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  h1 { font-size: 1.6rem; }
}

/* === Utility === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.p-md { padding: 16px; }
.p-lg { padding: 24px; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ============================================================
   Scene Backgrounds — Light tints + Dark scenes
   Light: sunrise, day, sunset, evening — same white glass UI
   Dark:  night, dark — dark glass UI with light text
   ============================================================ */

/* Shared background photo layer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(1.3) brightness(1.1);
  transform: scale(1.15);
  opacity: 0;
  transition: opacity 0.8s ease;
}

@keyframes sceneDrift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.03) translate(-0.5%, 0.5%); }
  100% { transform: scale(1) translate(0.5%, -0.5%); }
}

/* --- SUNRISE (light, warm peach/gold tint) --- */
body.scene-sunrise { background: #f5ece3; }
body.scene-sunrise::before {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255,180,100,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 30%, rgba(255,220,160,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(255,160,120,0.2) 0%, transparent 50%);
  animation: sceneDrift 20s ease-in-out infinite alternate;
}
body.scene-sunrise::after {
  opacity: 0.2;
  filter: blur(40px) saturate(1.2) brightness(1.3);
  background-image: url('https://images.unsplash.com/photo-1508739773434-c26b3d09e071?w=1920&q=80');
}

/* --- DAY (light, default blue/lavender) --- */
body.scene-day { background: #eef1f5; }
body.scene-day::before {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(168,198,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(200,168,255,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(168,235,255,0.2) 0%, transparent 60%);
  animation: sceneDrift 25s ease-in-out infinite alternate;
}
body.scene-day::after {
  opacity: 0.12;
  filter: blur(40px) saturate(1.2) brightness(1.3);
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
}

/* --- SUNSET (light, warm coral/pink tint) --- */
body.scene-sunset { background: #f2e8ea; }
body.scene-sunset::before {
  background:
    radial-gradient(ellipse at 50% 75%, rgba(255,120,80,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 40%, rgba(255,160,200,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(200,140,255,0.2) 0%, transparent 50%);
  animation: sceneDrift 18s ease-in-out infinite alternate;
}
body.scene-sunset::after {
  opacity: 0.2;
  filter: blur(40px) saturate(1.3) brightness(1.2);
  background-image: url('https://images.unsplash.com/photo-1495616811223-4d98c6e9c869?w=1920&q=80');
}

/* --- EVENING (light, cool lavender/indigo tint) --- */
body.scene-evening { background: #e8e6f2; }
body.scene-evening::before {
  background:
    radial-gradient(ellipse at 20% 70%, rgba(130,110,220,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(100,80,200,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(160,140,240,0.15) 0%, transparent 55%);
  animation: sceneDrift 22s ease-in-out infinite alternate;
}
body.scene-evening::after {
  opacity: 0.15;
  filter: blur(40px) saturate(1.4) brightness(1.1);
  background-image: url('https://images.unsplash.com/photo-1507400492013-162706c8c05e?w=1920&q=80');
}

/* --- NIGHT (dark scene) --- */
/* --- NIGHT scene --- */
body.scene-night { background: #050510; }
body.scene-night::before {
  background:
    radial-gradient(ellipse at 20% 15%, rgba(60,70,160,0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 70%, rgba(30,40,120,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 40%, rgba(80,100,200,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(100,60,140,0.15) 0%, transparent 40%),
    linear-gradient(to top, #020208, #06061a, #0c0c28, #141438);
  animation: sceneDrift 30s ease-in-out infinite alternate;
}
body.scene-night::after {
  opacity: 0.1;
  filter: blur(40px) saturate(1.2);
  background-image: url('https://images.unsplash.com/photo-1475274047050-1d0c55b0033f?w=1920&q=80');
}

/* --- DARK MODE (pure dark) --- */
body.scene-dark { background: #080808; }
body.scene-dark::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(50,50,70,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(35,35,55,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(60,60,80,0.08) 0%, transparent 60%);
  animation: sceneDrift 25s ease-in-out infinite alternate;
}
body.scene-dark::after { opacity: 0; }

/* ---- Dark scenes ONLY: glass + text overrides (night, dark) ---- */
body.scene-night .glass,
body.scene-dark .glass {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06) inset;
  color: #e8e8f0;
}
body.scene-night .glass:hover,
body.scene-dark .glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(168,198,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
body.scene-night .glass-strong,
body.scene-dark .glass-strong {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
  color: #e8e8f0;
}

body.scene-night, body.scene-dark { color: #e0e0f0; }
body.scene-night h1, body.scene-night h2, body.scene-night h3,
body.scene-dark h1, body.scene-dark h2, body.scene-dark h3 { color: #f0f0ff; }
body.scene-night .text-muted, body.scene-dark .text-muted { color: rgba(255,255,255,0.5); }

/* ---- Bottom bar (scene switcher + hidden modules) ---- */
.bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0 24px;
  flex-wrap: wrap;
}

/* ---- Scene switcher bar ---- */
.scene-switcher {
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  transition: background 0.4s, border-color 0.4s;
}

body.scene-night .scene-switcher,
body.scene-dark .scene-switcher {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.1);
}

/* Vertical divider between light and dark themes */
.scene-divider {
  width: 1px;
  align-self: stretch;
  margin: 4px 2px;
  background: rgba(0,0,0,0.15);
  border-radius: 1px;
}
body.scene-night .scene-divider,
body.scene-dark .scene-divider {
  background: rgba(255,255,255,0.2);
}

/* ---- Hidden modules panel ---- */
.hidden-modules-panel {
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  transition: background 0.4s, border-color 0.4s;
}
body.scene-night .hidden-modules-panel,
body.scene-dark .hidden-modules-panel {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.1);
}

.hidden-module-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(120,120,160,0.2);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
}
.hidden-module-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border-color: rgba(79,109,245,0.5);
}
body.scene-night .hidden-module-btn,
body.scene-dark .hidden-module-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.hidden-module-btn .hidden-module-tooltip {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  color: inherit;
}
.hidden-module-btn:hover .hidden-module-tooltip {
  opacity: 0.7;
}

.scene-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.scene-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.scene-btn.active {
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
  transform: scale(1.1);
}

/* Scene button colors — mini previews */
.scene-btn[data-scene="sunrise"] {
  background: linear-gradient(to top, #d4734a, #f5c76e, #ff9a6c);
}
.scene-btn[data-scene="day"] {
  background: linear-gradient(135deg, #a8c6ff, #c8a8ff, #a8ebff);
}
.scene-btn[data-scene="sunset"] {
  background: linear-gradient(to top, #6b2040, #d4534a, #f5a623);
}
.scene-btn[data-scene="evening"] {
  background: linear-gradient(to top, #15122a, #3a3070, #6450b0);
}
.scene-btn[data-scene="night"] {
  background: linear-gradient(to top, #020208, #10102a, #283078);
}
.scene-btn[data-scene="dark"] {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #111);
}

.scene-btn-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  color: inherit;
}
.scene-btn:hover .scene-btn-label {
  opacity: 0.7;
}
