/* עיצוב דאשבורד מודרני – Rose Gold – Dashboard Style */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700&family=Heebo:wght@400;500;600;700&family=Rubik:wght@600;700;800&display=swap');

:root {
  --font-sans: 'Assistant', 'Heebo', sans-serif;
  --font-title: 'Rubik', 'Heebo', 'Assistant', sans-serif;
  --color-rose: #b38b6d;
  --color-rose-dark: #96745a;
  --color-rose-light: rgba(179, 139, 109, 0.1);
  --bg-page: #fcfaf8;
}

html { min-height: 100vh; min-height: 100dvh; background-color: var(--bg-page); }
body { font-family: var(--font-sans); background-color: var(--bg-page); color: #1e293b; margin: 0; padding: 0; overflow-x: hidden; min-height: 100vh; min-height: 100dvh; line-height: 1.6; }

/* ─── Auth Screen ─── */
.auth-container { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 2rem; }
.auth-card { text-align: center; max-width: 400px; width: 100%; background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 3rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.auth-logo { height: 32px; margin: 0 auto 1.5rem; display: block; opacity: 0.9; }
.auth-card h1 { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin: 0 0 0.35rem; }
.auth-card .subtitle { font-size: 0.95rem; color: #64748b; margin: 0 0 2rem; }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1.25rem; font: inherit; font-weight: 600; font-family: var(--font-sans); font-size: 0.9rem; border-radius: 0.625rem; border: none; cursor: pointer; transition: all 0.2s ease; }
.btn:hover:not(:disabled) { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-1px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--color-rose); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--color-rose-dark); }
.btn-secondary { background: #fff; color: #1e293b; border: 1px solid #e2e8f0; }
.btn-secondary:hover:not(:disabled) { background: #f8fafc; border-color: #cbd5e1; }
.btn-google { width: 100%; gap: 0.5rem; padding: 0.85rem 1.5rem; font-size: 1rem; font-weight: 700; border-radius: 0.75rem; box-shadow: 0 4px 12px rgba(179,139,109,0.2); }

/* ─── App Container ─── */
#app-view { max-width: 1200px; margin: 0 auto; padding: 0 1rem 5rem; }

/* ─── Sticky Header ─── */
.event-page-header { position: sticky; top: 0; z-index: 50; background-color: rgba(252,250,248,0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 0.75rem 0; border-bottom: 1px solid rgba(226,232,240,0.6); margin-bottom: 1.25rem; }
.header-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.header-title { font-family: var(--font-title); font-size: 1.5rem; font-weight: 800; color: #1e293b; margin: 0; letter-spacing: -0.02em; white-space: nowrap; }
.header-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.6rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 700; border: 1px solid transparent; }
.badge-date { font-size: 0.875rem; font-weight: 600; color: #1e293b; }
.badge-day { background: rgba(179,139,109,0.1); color: var(--color-rose-dark); border-color: rgba(179,139,109,0.3); border-width: 2px; }
.badge-hebrew { color: #64748b; font-style: italic; font-weight: 500; }
.badge-days-left { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.badge-days-past { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.badge-sunset { background: #fffbeb; color: #b45309; border-color: #fde68a; padding: 0.25rem 0.65rem; border-radius: 999px; }
.header-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.header-actions-row { display: flex; align-items: center; gap: 0.35rem; }
.btn-icon { padding: 0.4rem; min-width: 2rem; font-size: 0.85rem; border-radius: 0.5rem; }
.btn-weather { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.65rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; cursor: pointer; transition: all 0.2s; }
.btn-weather:hover { background: #e0f2fe; }

/* ─── Dashboard Grid ─── */
.dashboard-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .dashboard-grid { grid-template-columns: 2fr 1fr; } }

/* ─── Section Cards ─── */
.section-card { background: #fff; border: 1px solid rgba(226,232,240,0.8); border-radius: 1rem; padding: 1.25rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.section-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(179,139,109,0.2); display: flex; align-items: center; gap: 0.5rem; }
.section-title .icon { color: var(--color-rose); display: inline-flex; }

/* ─── Field Cards ─── */
.field-card { background: #f8fafc; padding: 0.625rem 0.75rem; border-radius: 0.75rem; border: 1px solid #f1f5f9; transition: all 0.15s ease; }
.field-card:hover { border-color: rgba(179,139,109,0.25); }
.field-card-label { font-size: 0.6875rem; color: #94a3b8; font-weight: 500; margin-bottom: 0.15rem; display: flex; align-items: center; gap: 0.3rem; }
.field-card-label .icon { color: var(--color-rose); display: inline-flex; }
.field-card-value { font-size: 0.9rem; color: #1e293b; font-weight: 600; word-break: break-word; line-height: 1.4; }
.field-card-value.highlight { color: var(--color-rose); }
.field-card-value.long-text { white-space: pre-wrap; font-weight: 500; font-size: 0.85rem; line-height: 1.6; }
.field-card-row { display: flex; justify-content: space-between; align-items: flex-start; }
.field-card-actions { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; margin-right: 0.25rem; }
.fields-grid { display: grid; gap: 0.5rem; }
.fields-grid-2 { grid-template-columns: 1fr 1fr; }
.fields-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .fields-grid-3 { grid-template-columns: 1fr 1fr; } }

/* ─── Phone buttons ─── */
.btn-call { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; border: none; cursor: pointer; transition: all 0.15s; text-decoration: none; }
.btn-call-phone { background: #dbeafe; color: #2563eb; }
.btn-call-phone:hover { background: #bfdbfe; }
.btn-call-wa { background: #dcfce7; color: #16a34a; }
.btn-call-wa:hover { background: #bbf7d0; }

/* ─── Edit button ─── */
.btn-edit { background: none; border: none; color: var(--color-rose); cursor: pointer; padding: 0.25rem; opacity: 0.5; transition: opacity 0.15s; display: inline-flex; }
.field-card:hover .btn-edit { opacity: 1; }

/* ─── Edit mode ─── */
.field-card input, .field-card textarea, .field-card select { width: 100%; padding: 0.45rem 0.6rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font: inherit; font-size: 0.9rem; background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.field-card input:focus, .field-card textarea:focus, .field-card select:focus { border-color: var(--color-rose); box-shadow: 0 0 0 3px rgba(179,139,109,0.12); }
.field-card textarea { min-height: 5rem; resize: vertical; }
.edit-actions { display: flex; gap: 0.35rem; margin-top: 0.35rem; }
.btn-save { padding: 0.3rem 0.75rem; font-size: 0.8rem; font-weight: 600; border-radius: 0.5rem; border: none; cursor: pointer; background: var(--color-rose); color: #fff; }
.btn-cancel { padding: 0.3rem 0.75rem; font-size: 0.8rem; font-weight: 600; border-radius: 0.5rem; border: 1px solid #e2e8f0; cursor: pointer; background: #fff; color: #64748b; }

/* ─── Couple Photo ─── */
.couple-photo { width: 5rem; height: 5rem; object-fit: cover; border-radius: 0.5rem; border: 2px solid #f1f5f9; cursor: pointer; transition: border-color 0.2s; }
.couple-photo:hover { border-color: var(--color-rose); }

/* ─── Photo Lightbox ─── */
#photo-lightbox { position: fixed; inset: 0; z-index: 10001; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 2rem; box-sizing: border-box; }
#photo-lightbox[aria-hidden="true"] { display: none !important; }
.photo-lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border: none; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.photo-lightbox-close:hover { background: rgba(255,255,255,0.35); }
.photo-lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; }

/* ─── Notes colored backgrounds ─── */
.note-blue { background: #eff6ff; border-color: #bfdbfe; }
.note-orange { background: #fff7ed; border-color: #fed7aa; }
.note-red { background: #fef2f2; border-color: #fecaca; }

/* ─── Drive folder dark card ─── */
.drive-folder-card { background: #0f172a; color: #fff; padding: 1rem 1.25rem; border-radius: 1rem; }
.drive-folder-card code { font-size: 0.8rem; font-family: monospace; word-break: break-all; color: #e2e8f0; }
.btn-copy { background: none; border: none; color: var(--color-rose); cursor: pointer; padding: 0.35rem; border-radius: 0.5rem; transition: background 0.15s; display: inline-flex; }
.btn-copy:hover { background: rgba(255,255,255,0.1); }

/* ─── Mezuva status ─── */
.badge-mezuva-yes { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.badge-mezuva-no { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }

/* ─── Contract link ─── */
.contract-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.75rem; color: var(--color-rose); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.contract-link:hover { background: #fff; border-color: var(--color-rose); }

/* ─── Role Badge ─── */
.role-badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.role-badge--admin { background: #fef3c7; color: #92400e; }
.role-badge--main { background: #dbeafe; color: #1e40af; }
.role-badge--second { background: #e0e7ff; color: #3730a3; }

/* ─── Update button ─── */
.update-actions { margin-top: 1.5rem; text-align: center; }
.update-actions .btn-primary { width: 100%; max-width: 400px; padding: 0.85rem 1.5rem; font-size: 1rem; font-weight: 700; border-radius: 0.75rem; box-shadow: 0 4px 12px rgba(179,139,109,0.2); }

/* ─── Alerts ─── */
.alert { padding: 1rem 1.25rem; border-radius: 0.75rem; margin-bottom: 1rem; }
.alert-error { background: #fef5f5; border: 1px solid #fecaca; color: #b91c1c; }

/* ─── Loading ─── */
.loading { text-align: center; padding: 4rem 1rem; color: #64748b; }
.spinner { display: inline-block; width: 2.5rem; height: 2.5rem; border: 3px solid rgba(226,232,240,0.8); border-top-color: var(--color-rose); border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Toast ─── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 700; font-size: 1rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); z-index: 9999; animation: slideUp 0.3s ease; }
.toast--success { background: #10b981; color: #fff; }
@keyframes slideUp { from { transform: translate(-50%,100%); opacity: 0; } to { transform: translate(-50%,0); opacity: 1; } }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #d6d3d1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a8a29e; }

/* ─── Dark Mode ─── */
body.dark { background-color: #0f172a !important; color: #e2e8f0; }
html.dark { background-color: #0f172a !important; }
body.dark .event-page-header { background-color: rgba(15,23,42,0.97); }
body.dark .section-card { background: #1e293b; border-color: #334155; }
body.dark .section-title { color: #e2e8f0; border-color: #334155; }
body.dark .field-card { background: #334155; border-color: #475569; }
body.dark .field-card-label { color: #94a3b8; }
body.dark .field-card-value { color: #e2e8f0; }
body.dark .header-title { color: #e2e8f0; }
body.dark .badge-date { color: #e2e8f0; }
body.dark .badge-day { background: rgba(179,139,109,0.2); color: #d4a574; }
body.dark .badge-hebrew { color: #94a3b8; }
body.dark .badge-days-left { background: #064e3b; color: #6ee7b7; border-color: #065f46; }
body.dark .badge-days-past { background: #450a0a; color: #fca5a5; border-color: #991b1b; }
body.dark .badge-sunset { background: #422006; color: #fcd34d; border-color: #78350f; }
body.dark .btn-weather { background: #0c4a6e; color: #7dd3fc; border-color: #0369a1; }
body.dark .btn-secondary { background: #334155; color: #e2e8f0; border-color: #475569; }
body.dark .auth-card { background: #1e293b; border-color: #334155; }
body.dark .auth-card h1 { color: #e2e8f0; }
body.dark .auth-card .subtitle { color: #94a3b8; }
body.dark .role-badge--admin { background: #422006; color: #fcd34d; }
body.dark .role-badge--main { background: #1e3a5f; color: #93c5fd; }
body.dark .role-badge--second { background: #312e81; color: #a5b4fc; }
body.dark .note-blue { background: #1e3a5f; border-color: #1e40af; }
body.dark .note-orange { background: #431407; border-color: #9a3412; }
body.dark .note-red { background: #450a0a; border-color: #991b1b; }
body.dark .field-card input, body.dark .field-card textarea, body.dark .field-card select { background: #1e293b; border-color: #475569; color: #e2e8f0; }
body.dark .alert-error { background: #450a0a; border-color: #991b1b; color: #fca5a5; }
body.dark .contract-link { background: #334155; border-color: #475569; color: #d4a574; }
body.dark .couple-photo { border-color: #475569; }
body.dark .badge-mezuva-yes { background: #422006; color: #fcd34d; border-color: #78350f; }
body.dark .badge-mezuva-no { background: #334155; color: #94a3b8; border-color: #475569; }
body.dark ::-webkit-scrollbar-track { background: #1e293b; }
body.dark ::-webkit-scrollbar-thumb { background: #475569; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .event-page-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; box-sizing: border-box; padding: 0.5rem 1rem; }
  #app-view { padding-top: 6rem; }
  .header-title { font-size: 1.15rem; }
  .header-badges { gap: 0.35rem; }
  .badge { font-size: 0.65rem; padding: 0.15rem 0.5rem; }
  .fields-grid-2, .fields-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .fields-grid-2 { grid-template-columns: 1fr; }
  .header-title { font-size: 1rem; }
}

/* ─── Weather Modal ─── */
.weather-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.weather-modal[aria-hidden="true"] { display: none !important; }
.weather-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.weather-dialog { position: relative; width: 100%; max-width: 48rem; max-height: 90vh; overflow: hidden; background: #fff; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid rgba(226,232,240,0.8); display: flex; flex-direction: column; }
.weather-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid #e2e8f0; flex-shrink: 0; }
.weather-header h2 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.weather-close-btn { width: 2.25rem; height: 2.25rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; background: none; font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #64748b; transition: all 0.15s; }
.weather-close-btn:hover { background: #f1f5f9; color: #1e293b; }
.weather-body { flex: 1; overflow-y: auto; padding: 1.25rem; }

/* Weather theme backgrounds */
.weather-theme-sunny { background: linear-gradient(165deg, #fef3c7, #fde68a, #fcd34d) !important; }
.weather-theme-partlyCloudy { background: linear-gradient(165deg, #e0f2fe, #bae6fd, #7dd3fc) !important; }
.weather-theme-cloudy { background: linear-gradient(165deg, #94a3b8, #64748b, #475569) !important; }
.weather-theme-rain { background: linear-gradient(165deg, #dbeafe, #93c5fd, #3b82f6) !important; }
.weather-theme-snow { background: linear-gradient(165deg, #e0f2fe, #bae6fd, #e2e8f0) !important; }
.weather-theme-thunder { background: linear-gradient(165deg, #4c1d95, #5b21b6, #6d28d9) !important; color: #fff; }
.weather-theme-fog { background: linear-gradient(165deg, #e2e8f0, #cbd5e1, #94a3b8) !important; }

/* Weather hero */
.weather-hero { text-align: center; padding: 1.5rem 1rem; border-radius: 0.75rem; margin-bottom: 1rem; background: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.4); }
.weather-hero-temp { font-size: 3rem; font-weight: 800; line-height: 1; }
.weather-hero-desc { font-size: 1rem; font-weight: 600; margin-top: 0.25rem; color: #475569; }
.weather-hero-range { font-size: 0.85rem; color: #64748b; margin-top: 0.25rem; }

/* Weather sunset glass */
.weather-sunset-glass { background: linear-gradient(135deg, rgba(251,191,36,0.25), rgba(245,158,11,0.2), rgba(217,119,6,0.15)); backdrop-filter: blur(12px); border: 1px solid rgba(251,191,36,0.4); border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1rem; }
.weather-sunset-title { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; color: #92400e; }
.weather-sunset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.weather-sunset-item { display: flex; align-items: center; gap: 0.5rem; }
.weather-sunset-time { font-size: 1.1rem; font-weight: 700; color: #b45309; }

/* Weather hourly rows */
.weather-hour-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.75rem; border-bottom: 1px solid rgba(226,232,240,0.5); font-size: 0.85rem; transition: background 0.1s; }
.weather-hour-row:hover { background: rgba(0,0,0,0.03); }
.weather-hour-row:last-child { border-bottom: none; }
.weather-hour-time { min-width: 3rem; font-weight: 600; color: #475569; }
.weather-hour-icon { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }
.weather-hour-temp { min-width: 3rem; font-weight: 700; font-size: 1rem; }
.weather-hour-temp.hot { color: #ea580c; }
.weather-hour-temp.cold { color: #2563eb; }
.weather-hour-desc { flex: 1; color: #64748b; font-weight: 500; }
.weather-hour-rain { min-width: 3rem; text-align: center; font-weight: 600; color: #94a3b8; }
.weather-hour-rain.active { color: #2563eb; }
.weather-hour-wind { min-width: 4rem; text-align: left; color: #94a3b8; font-size: 0.8rem; }
.weather-rain-border { border-right: 4px solid #60a5fa; }

/* Weather search */
.weather-search { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.weather-search input { flex: 1; padding: 0.5rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font: inherit; font-size: 0.9rem; outline: none; }
.weather-search input:focus { border-color: var(--color-rose); box-shadow: 0 0 0 3px rgba(179,139,109,0.12); }
.weather-search button { padding: 0.5rem 1rem; border-radius: 0.5rem; border: none; background: var(--color-rose); color: #fff; font-weight: 600; cursor: pointer; }
.weather-location-results { margin-bottom: 1rem; }
.weather-location-btn { display: block; width: 100%; text-align: right; padding: 0.5rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; background: #f8fafc; cursor: pointer; margin-bottom: 0.35rem; font: inherit; font-size: 0.85rem; transition: all 0.15s; }
.weather-location-btn:hover { background: #fff; border-color: var(--color-rose); }

/* Weather loading */
.weather-loading { text-align: center; padding: 2rem; color: #64748b; }

/* Dark mode weather */
body.dark .weather-dialog { background: #1e293b; border-color: #334155; }
body.dark .weather-header { border-color: #334155; }
body.dark .weather-header h2 { color: #e2e8f0; }
body.dark .weather-close-btn { border-color: #475569; color: #94a3b8; }
body.dark .weather-close-btn:hover { background: #334155; color: #e2e8f0; }
body.dark .weather-hero { background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.15); }
body.dark .weather-hero-desc { color: #94a3b8; }
body.dark .weather-hero-range { color: #64748b; }
body.dark .weather-hour-row { border-color: rgba(71,85,105,0.5); }
body.dark .weather-hour-row:hover { background: rgba(255,255,255,0.03); }
body.dark .weather-hour-time { color: #94a3b8; }
body.dark .weather-hour-desc { color: #94a3b8; }
body.dark .weather-sunset-glass { background: linear-gradient(135deg, rgba(180,83,9,0.35), rgba(146,64,14,0.25)); border-color: rgba(251,191,36,0.25); }
body.dark .weather-sunset-title { color: #fcd34d; }
body.dark .weather-sunset-time { color: #fcd34d; }
body.dark .weather-search input { background: #334155; border-color: #475569; color: #e2e8f0; }
body.dark .weather-location-btn { background: #334155; border-color: #475569; color: #e2e8f0; }
body.dark .weather-location-btn:hover { background: #475569; border-color: var(--color-rose); }

@media (max-width: 480px) {
  .weather-dialog { inset: 0; border-radius: 0; max-height: 100dvh; }
  .weather-hour-wind { display: none; }
  .weather-sunset-grid { grid-template-columns: 1fr; }
}

/* ─── Print ─── */
@media print {
  body { background: #fff; }
  .event-page-header { position: relative; }
  .btn, .update-actions, .btn-edit, .header-controls { display: none !important; }
  .section-card { break-inside: avoid; box-shadow: none; }
}
