/* ── Dashboard (Standalone Layout) ───────────────────────────── */
.db-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    background: #FFF5F8;
}
.db-layout a { text-decoration: none; }

/* Mobile Header (nur < 905px sichtbar) */
.db-mobile-header { display: none; }
.db-overlay { display: none; }
.db-sidebar-close { display: none; }
.db-hamburger { background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; color: #C21A64; }
.db-hamburger:hover { background: #fce4ec; }

/* Sidebar */
.db-sidebar {
    background: #fff;
    border-right: 1px solid #ebedf0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.2s ease;
    display: flex;
    flex-direction: column;
}
.db-sidebar-nav { flex: 1; }

/* Collapse-Button unten in der Sidebar */
.db-sidebar-collapse {
    background: #fafbfc; border: 1px solid #eef0f2;
    color: #76818f; cursor: pointer;
    margin: 12px 14px 0; padding: 6px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.db-sidebar-collapse:hover { background: #fce4ec; color: #C21A64; border-color: #C21A64; }
.db-sidebar-collapse .material-symbols-outlined { font-size: 18px; transition: transform 0.2s; }

/* Collapsed State: nur Icons */
.db-layout:has(.db-sidebar.collapsed) { grid-template-columns: 64px 1fr; }
.db-sidebar.collapsed { width: 64px; }
.db-sidebar.collapsed .header-logo span,
.db-sidebar.collapsed .db-sidebar-label { display: none; }
.db-sidebar.collapsed .db-sidebar-head {
    padding: 0 10px 10px;
    display: flex; justify-content: center;
}
.db-sidebar.collapsed .header-logo { justify-content: center; }
.db-sidebar.collapsed .db-nav {
    justify-content: center; padding: 10px;
    position: relative;
}
.db-sidebar.collapsed .db-nav > span:not(.material-symbols-outlined),
.db-sidebar.collapsed .db-nav > b { display: none; }
.db-sidebar.collapsed .db-nav-sep { margin: 8px 10px; }
.db-sidebar.collapsed .db-sidebar-collapse .material-symbols-outlined { transform: rotate(180deg); }
/* Tooltip-ähnliches Label beim Hover (im collapsed state) */
.db-sidebar.collapsed .db-nav:hover::after {
    content: attr(data-label);
    position: absolute; left: calc(100% + 8px); top: 50%;
    transform: translateY(-50%);
    background: #1a1b2e; color: #fff;
    padding: 4px 10px; border-radius: 6px;
    font-size: 12px; white-space: nowrap;
    z-index: 300; pointer-events: none;
}
.db-sidebar-head { padding: 0 18px 14px; border-bottom: 1px solid #f0f1f3; margin-bottom: 10px; }
.db-sidebar-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    color: #C21A64; background: #fce4ec; padding: 4px 10px; border-radius: 6px;
}
.db-sidebar-label .material-symbols-outlined { font-size: 14px; color: #C21A64; }
.db-sidebar-nav { display: flex; flex-direction: column; gap: 1px; padding: 0 10px; }
.db-nav {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; border-radius: 10px;
    color: #5f6c7b; font-size: 13px; font-weight: 500; transition: all .15s;
}
.db-nav .material-symbols-outlined { font-size: 19px; color: #76818f; }
.db-nav:hover { background: #f4f5f7; color: #1a1b2e; }
.db-nav.active { background: #fce4ec; color: #C21A64; font-weight: 600; }
.db-nav.active .material-symbols-outlined { color: #C21A64; }
.db-nav b { margin-left: auto; font-size: 11px; background: #ebedf0; color: #5f6c7b; padding: 1px 7px; border-radius: 8px; font-weight: 600; }
.db-nav b.accent { background: #C21A64; color: #fff; }
.db-nav-sep { height: 1px; background: #ebedf0; margin: 8px 14px; }

/* Main */
.db-main { flex: 1; padding: 28px 32px; min-width: 0; overflow-x: hidden; }

/* Top bar */
.db-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
/* Dashboard page header card */
.db-page-header { margin-bottom: 14px; padding: 16px 22px; min-height: 68px; display: flex; align-items: center; justify-content: space-between; box-sizing: border-box; gap: 12px; flex-wrap: wrap; }
.db-page-header > p { width: 100%; margin: 0; }
.db-page-header .btn { margin-left: auto; }
/* Dashboard headings */
.db-h1 { font-size: 15px; font-weight: 700; color: #1a1b2e; margin: 0; }
.db-main h1:not(.db-h1) { font-size: 15px; font-weight: 700; color: #1a1b2e; margin: 0; }
.db-main h2 { font-size: 15px; font-weight: 700; color: #1a1b2e; margin-bottom: 12px; }
.db-main h3 { font-size: 14px; font-weight: 600; color: #1a1b2e; }
.db-main p, .db-main td, .db-main li { font-size: 13px; }
.db-main .text-secondary { font-size: 13px; color: #76818f; }
.db-main .muted { color: #76818f; font-size: 13px; }
.db-subtitle { font-size: 13px; color: #76818f; margin-top: 4px; }
.db-topbar-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   User-Profil in Sidebar (statt Logo)
   ═══════════════════════════════════════════════════════════ */
.db-user-trigger {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 10px 12px; border: 1px solid #eef0f2; background: #fff;
    border-radius: 12px; cursor: pointer; transition: all 0.15s;
    text-align: left;
}
.db-user-trigger:hover { border-color: #C21A64; background: #fff5f8; }
.db-user-avatar-wrap { position: relative; flex-shrink: 0; }
.db-user-avatar { width: 36px; height: 36px; border-radius: 50%; display: block; background: #fce4ec; }
.db-user-status {
    position: absolute; right: -1px; bottom: -1px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; border: 2px solid #fff;
}
.db-user-info { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.db-user-info strong { font-size: 13px; color: #1a1b2e; font-weight: 600; }
.db-user-info span { font-size: 11px; color: #76818f; }
.db-user-chevron { font-size: 18px; color: #76818f; flex-shrink: 0; }

/* Profile-Menu */
.db-profile-menu {
    display: none;
    position: absolute; top: 68px; left: 14px; right: 14px;
    background: #fff; border: 1px solid #eef0f2; border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 6px; z-index: 150;
}
.db-profile-menu.show { display: block; }
.db-profile-head {
    display: flex; align-items: center; gap: 10px;
    padding: 12px; border-bottom: 1px solid #f0f1f3; margin-bottom: 4px;
}
.db-user-avatar-lg { width: 44px; height: 44px; border-radius: 50%; background: #fce4ec; }
.db-profile-identity { flex: 1; min-width: 0; }
.db-profile-identity strong { display: block; font-size: 14px; color: #1a1b2e; font-weight: 600; }
.db-profile-identity span { display: block; font-size: 11px; color: #76818f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-profile-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; border-radius: 8px;
    color: #1a1b2e; font-size: 13px; text-decoration: none;
    transition: background 0.1s;
}
.db-profile-menu a:hover { background: #fff5f8; color: #C21A64; }
.db-profile-menu a .material-symbols-outlined { font-size: 18px; color: #76818f; }
.db-profile-menu a:hover .material-symbols-outlined { color: #C21A64; }
.db-profile-menu a.danger:hover { background: #fee2e2; color: #991b1b; }
.db-profile-menu a.danger:hover .material-symbols-outlined { color: #991b1b; }
.db-profile-sep { height: 1px; background: #f0f1f3; margin: 4px 0; }

/* ═══════════════════════════════════════════════════════════
   3-Spalten-Dashboard Grid
   ═══════════════════════════════════════════════════════════ */
.db-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 16px;
}
.db-col-main, .db-col-side { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 1100px) { .db-main-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   Calendar-Widget (Wochenansicht + Meeting-Card)
   ═══════════════════════════════════════════════════════════ */
.db-calendar-card { background: #fff; border: 1px solid #eef0f2; border-radius: 14px; padding: 18px; }
.db-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.db-cal-head h2 { font-size: 15px; font-weight: 700; color: #1a1b2e; display: flex; align-items: center; gap: 6px; margin: 0; }
.db-cal-head h2 .material-symbols-outlined { font-size: 18px; color: #C21A64; }
.db-cal-month { font-size: 13px; color: #76818f; display: inline-flex; align-items: center; gap: 4px; }
.db-cal-week {
    display: grid; grid-template-columns: auto repeat(7, 1fr) auto;
    align-items: center; gap: 6px; margin-bottom: 14px;
}
.db-cal-nav {
    background: none; border: none; cursor: pointer;
    padding: 6px; border-radius: 50%;
    color: #76818f; display: flex; align-items: center; justify-content: center;
}
.db-cal-nav:hover { background: #fff5f8; color: #C21A64; }
.db-cal-day {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 10px 4px; border-radius: 12px;
    font-size: 13px; font-weight: 500;
    background: transparent; border: none; cursor: pointer;
    transition: all 0.15s; color: #1a1b2e; text-decoration: none;
}
.db-cal-day .dname { font-size: 11px; color: #76818f; text-transform: capitalize; margin-bottom: 2px; }
.db-cal-day .dnum { font-size: 16px; font-weight: 700; }
.db-cal-day:hover { background: #fff5f8; }
.db-cal-day.active { background: #C21A64; color: #fff; }
.db-cal-day.active .dname { color: rgba(255,255,255,0.85); }
.db-cal-day.has-event { position: relative; }
.db-cal-day.has-event:not(.active)::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #C21A64;
}

.db-cal-event {
    background: #fafbfc; border-radius: 12px;
    padding: 16px; margin-top: 10px;
    display: flex; flex-direction: column; gap: 12px;
}
.db-cal-event-head { display: flex; justify-content: space-between; align-items: flex-start; }
.db-cal-event-title { font-size: 15px; font-weight: 600; color: #1a1b2e; margin: 0 0 4px; }
.db-cal-event-meta { font-size: 13px; color: #76818f; }
.db-cal-event-meta .dot { color: #aab; margin: 0 6px; }
.db-cal-event-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.db-cal-join {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; background: #fff;
    border: 1px solid #eef0f2; border-radius: 8px;
    font-size: 12px; font-weight: 600; color: #1a1b2e;
    text-decoration: none; transition: all 0.15s;
}
.db-cal-join:hover { border-color: #C21A64; color: #C21A64; }
.db-cal-attendees { display: flex; align-items: center; }
.db-cal-attendee {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid #fff; margin-left: -6px;
    background: #fce4ec; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #C21A64;
}
.db-cal-attendee:first-child { margin-left: 0; }
.db-cal-attendee.more { background: #C21A64; color: #fff; font-size: 11px; }
.db-cal-empty { text-align: center; color: #aab; font-size: 13px; padding: 16px 0; }

/* ═══════════════════════════════════════════════════════════
   Goals-Style (für Selbsttests)
   ═══════════════════════════════════════════════════════════ */
.db-goals-card { background: #fff; border: 1px solid #eef0f2; border-radius: 14px; padding: 18px; }
.db-goals-card h2 { font-size: 15px; font-weight: 700; color: #1a1b2e; display: flex; align-items: center; gap: 6px; margin: 0 0 16px; }
.db-goals-card h2 .material-symbols-outlined { font-size: 18px; color: #C21A64; }
.db-goal-item {
    display: grid; grid-template-columns: 1fr auto auto;
    align-items: center; gap: 14px; padding: 12px 0;
    border-bottom: 1px solid #f0f1f3;
}
.db-goal-item:last-child { border-bottom: none; }
.db-goal-info strong {
    display: block; font-size: 14px; font-weight: 600; color: #1a1b2e;
    text-decoration: none;
}
.db-goal-info > a { color: inherit; text-decoration: none; }
.db-goal-info > a:hover strong { color: #C21A64; }
.db-goal-info span { display: block; font-size: 12px; color: #76818f; margin-top: 2px; }
.db-goal-bar { width: 140px; height: 6px; background: #f0f1f3; border-radius: 3px; overflow: hidden; }
.db-goal-bar-fill { height: 100%; border-radius: 3px; transition: width 0.3s; }
.db-goal-bar-fill.low    { background: #22c55e; } /* grün = gut */
.db-goal-bar-fill.medium { background: #f59e0b; }
.db-goal-bar-fill.high   { background: #ef4444; }
.db-goal-pct { font-size: 13px; font-weight: 700; color: #1a1b2e; min-width: 40px; text-align: right; }

/* ═══════════════════════════════════════════════════════════
   Zuletzt angesehen (Gelber Highlight wie Stratify)
   ═══════════════════════════════════════════════════════════ */
.db-recent-card {
    background: linear-gradient(180deg, #fef9c3 0%, #fffbe8 100%);
    border: 1px solid #fde68a; border-radius: 14px;
    padding: 16px 18px;
}
.db-recent-head {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700; color: #713f12; margin-bottom: 12px;
}
.db-recent-head .material-symbols-outlined { font-size: 18px; color: #ca8a04; }
.db-recent-head .more { margin-left: auto; background: none; border: none; cursor: pointer; color: #713f12; padding: 4px; border-radius: 50%; }
.db-recent-head .more:hover { background: rgba(113,63,18,0.1); }
.db-recent-list { display: flex; flex-direction: column; gap: 6px; }
.db-recent-item {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 8px; border-radius: 8px;
    color: #713f12; text-decoration: none; font-size: 13px;
    transition: background 0.1s;
}
.db-recent-item:hover { background: rgba(255,255,255,0.5); }
.db-recent-item img, .db-recent-item .db-recent-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: #fff; display: flex; align-items: center; justify-content: center;
}
.db-recent-item .db-recent-icon .material-symbols-outlined { font-size: 16px; color: #C21A64; }
.db-recent-item strong { font-weight: 600; color: #713f12; }
.db-recent-item span.sub { color: #854d0e; font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   Modernes Dashboard 2026 (Hero, Quick Actions, AI, Tasks, Integrations)
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.db-hero { margin-bottom: 18px; }
.db-hero-date { font-size: 12px; color: #76818f; margin-bottom: 6px; }
.db-hero-title {
    font-size: 32px; font-weight: 800; color: #1a1b2e; line-height: 1.15;
    margin: 0 0 4px; letter-spacing: -0.5px;
    display: inline-block; padding: 2px 10px;
    background: linear-gradient(180deg, transparent 60%, #fce4ec 60%);
    border-radius: 6px;
}
.db-hero-sub { font-size: 20px; color: #76818f; font-weight: 500; margin: 0 0 14px; line-height: 1.3; }

/* Quick-Action Pills */
.db-quick-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.db-quick-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 999px;
    border: 1.5px solid #e4d3dc; background: #fff;
    color: #1a1b2e; font-size: 13px; font-weight: 500;
    transition: all 0.15s; cursor: pointer;
}
.db-quick-pill:hover { border-color: #C21A64; color: #C21A64; background: #fff5f8; }
.db-quick-pill.primary { background: linear-gradient(135deg, #C21A64, #e91e8c); border-color: transparent; color: #fff; }
.db-quick-pill.primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(194,26,100,0.25); }
.db-quick-pill .material-symbols-outlined { font-size: 18px; }

/* Search-Card */
.db-search-card {
    background: #fff; border: 1px solid #eef0f2; border-radius: 14px;
    padding: 14px 18px; margin-bottom: 14px;
    display: flex; flex-direction: column; gap: 10px;
}
.db-search-input-wrap {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; background: #fafbfc; border-radius: 10px;
    border: 1.5px solid transparent; transition: all 0.15s;
}
.db-search-input-wrap:focus-within { border-color: #C21A64; background: #fff; }
.db-search-input-wrap .material-symbols-outlined { color: #76818f; font-size: 20px; }
.db-search-input-wrap input {
    flex: 1; border: none; background: transparent; outline: none;
    font-size: 14px; color: #1a1b2e;
}
.db-search-input-wrap input::placeholder { color: #aab; }
.db-search-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.db-search-chip {
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid #e4d3dc; background: #fff;
    color: #5f6c7b; font-size: 12px; font-weight: 500;
    transition: all 0.15s; cursor: pointer; text-decoration: none;
}
.db-search-chip:hover, .db-search-chip.active { border-color: #C21A64; color: #C21A64; background: #fce4ec; }

/* AI-Suggestions */
.db-ai-suggestions { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-bottom: 16px; }
.db-suggestion {
    background: linear-gradient(135deg, #fff5f8, #fff);
    border: 1px solid #fce4ec; border-radius: 12px;
    padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
    transition: all 0.15s;
}
.db-suggestion:hover { border-color: #C21A64; box-shadow: 0 4px 12px rgba(194,26,100,0.08); transform: translateY(-1px); }
.db-suggestion-head { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #C21A64; letter-spacing: 0.3px; }
.db-suggestion-head .material-symbols-outlined { font-size: 16px; }
.db-suggestion-text { font-size: 13px; color: #1a1b2e; line-height: 1.45; margin: 0; }
.db-suggestion-cta {
    font-size: 12px; font-weight: 600; color: #C21A64;
    display: inline-flex; align-items: center; gap: 4px; align-self: flex-start;
    padding: 4px 10px; border-radius: 6px; background: #fce4ec;
    text-decoration: none; transition: all 0.15s;
}
.db-suggestion-cta:hover { background: #C21A64; color: #fff; }

/* Appointments Task-Style */
.db-appt-section { margin-bottom: 10px; }
.db-appt-section-head {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 0; cursor: pointer;
    font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
    color: #76818f;
}
.db-appt-section-head .section-count { color: #aab; font-weight: 400; }
.db-appt-section-head .toggle-icon { margin-left: auto; transition: transform 0.2s; font-size: 20px; }
.db-appt-section.collapsed .toggle-icon { transform: rotate(-90deg); }
.db-appt-section.collapsed .db-appt-list { display: none; }

.db-appt-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 600;
}
.db-appt-chip.today { background: #fce4ec; color: #C21A64; }
.db-appt-chip.week { background: #fff3e0; color: #b45309; }
.db-appt-chip.later { background: #e0e7ff; color: #3730a3; }
.db-appt-chip.confirmed { background: #dcfce7; color: #166534; }
.db-appt-chip.pending { background: #fef3c7; color: #92400e; }

.db-appt-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border: 1px solid #eef0f2; border-radius: 10px;
    margin-bottom: 6px; background: #fff;
    transition: all 0.15s;
}
.db-appt-item:hover { border-color: #C21A64; background: #fff5f8; }
.db-appt-date-box {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0;
    background: #fce4ec; color: #C21A64; border-radius: 10px;
    font-weight: 700;
}
.db-appt-date-box .dd { font-size: 16px; line-height: 1; }
.db-appt-date-box .mon { font-size: 10px; letter-spacing: 0.5px; text-transform: lowercase; }
.db-appt-info { flex: 1; min-width: 0; }
.db-appt-info strong { display: block; font-size: 13px; color: #1a1b2e; }
.db-appt-info span { display: block; font-size: 12px; color: #76818f; margin-top: 2px; }
.db-appt-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* Integrations */
.db-integrations { display: flex; flex-wrap: wrap; gap: 8px; }
.db-integration-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 10px;
    border: 1px solid #eef0f2; background: #fff;
    color: #1a1b2e; font-size: 12px; font-weight: 500;
    transition: all 0.15s; text-decoration: none;
}
.db-integration-btn:hover { border-color: #C21A64; background: #fff5f8; color: #C21A64; }
.db-integration-btn .material-symbols-outlined { font-size: 18px; color: #C21A64; }

/* Mood Smiley Row (interaktiv) */
.db-mood-row { display: flex; justify-content: space-between; gap: 6px; margin: 12px 0 6px; }
.db-mood-btn {
    flex: 1; aspect-ratio: 1; max-width: 60px;
    border: 2px solid transparent; background: #fafbfc;
    border-radius: 12px; font-size: 26px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.db-mood-btn:hover { background: #fce4ec; transform: scale(1.08); }
.db-mood-btn.selected { border-color: #C21A64; background: #fce4ec; transform: scale(1.12); }

/* Welcome-Card (Legacy, bleibt f\u00fcr Kompatibilit\u00e4t) */
.db-welcome {
    background: #fce4ec;
    border: 1px solid #C21A64;
    border-radius: 14px;
    padding: 22px 20px;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 16px;
    min-height: 80px;
}
.db-welcome > .material-symbols-outlined { font-size: 40px; color: #C21A64; flex-shrink: 0; }
.db-welcome .db-welcome-body { flex: 1; }
.db-welcome h1,
.db-welcome h2 { font-size: 18px; font-weight: 700; color: #1a1b2e; margin: 0 0 4px; }
.db-welcome p { font-size: 13px; color: #76818f; margin: 0; }
.db-welcome .db-welcome-meta {
    text-align: right; flex-shrink: 0;
    font-size: 12px; color: #76818f;
}
.db-welcome .db-welcome-meta strong { display: block; color: #1a1b2e; font-weight: 500; font-size: 13px; margin-top: 2px; }
@media (max-width: 600px) {
    .db-welcome { flex-direction: column; text-align: center; }
    .db-welcome .db-welcome-meta { text-align: center; }
    .db-welcome h1, .db-welcome h2 { font-size: 16px; }
    .db-welcome > .material-symbols-outlined { font-size: 32px; }
}

/* Stats */
.db-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.db-stat {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #eef0f2; border-radius: 14px; padding: 18px 20px;
    transition: all .2s; color: inherit;
    min-height: 100px;
}
.db-stat:hover { border-color: #C21A64; box-shadow: 0 4px 12px rgba(194,26,100,.08); transform: translateY(-2px); }
.db-stat-top {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: #76818f;
}
.db-stat-top .material-symbols-outlined { font-size: 18px; color: #C21A64; }
.db-stat-num { font-size: 28px; font-weight: 800; color: #1a1b2e; letter-spacing: -.5px; margin-top: auto; }
.db-stat-sub { font-size: 12px; color: #76818f; margin-top: 4px; }
.db-stat-sub a { color: #C21A64; font-weight: 500; text-decoration: none; }
.db-stat-sub a:hover { text-decoration: underline; }

/* Cards (Provider-ähnlich: Border statt Shadow) */
.db-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.db-card {
    background: #fff; border: 1px solid #eef0f2; border-radius: 14px; padding: 20px 22px;
}
.db-card-wide { grid-column: span 1; }
.db-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.db-card-head h2 { font-size: 15px; font-weight: 700; color: #1a1b2e; margin: 0; display: flex; align-items: center; gap: 6px; }
.db-card-head h2 .material-symbols-outlined { font-size: 18px; color: #C21A64; }
.db-card-head a { font-size: 12px; color: #C21A64; font-weight: 600; }
.db-card-head a:hover { opacity: .7; }
.db-card-sub { font-size: 11px; color: #aab; }
.db-card-desc { font-size: 13px; color: #76818f; line-height: 1.5; margin-bottom: 12px; }

/* Ring chart */
.db-care-row { display: flex; align-items: center; gap: 24px; }
.db-ring-wrap { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.db-ring { width: 100%; height: 100%; }
.db-ring-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.db-ring-pct { font-size: 22px; font-weight: 800; color: #C21A64; }
.db-ring-sub { font-size: 10px; color: #76818f; }
.db-care-info { flex: 1; }
.db-care-label { font-size: 10px; color: #76818f; text-transform: uppercase; letter-spacing: .8px; font-weight: 700; margin-bottom: 10px; }
.db-care-step { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.db-care-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg,#C21A64,#e91e8c); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.db-care-icon .material-symbols-outlined { font-size: 18px; }
.db-care-step strong { font-size: 14px; color: #1a1b2e; display: block; }
.db-care-step p { font-size: 12px; color: #76818f; margin: 2px 0 0; }

/* Chart empty */
.db-chart-empty { text-align: center; color: #aab; font-size: 12px; padding: 20px 0; }
.db-chart-empty .material-symbols-outlined { font-size: 28px; opacity: .25; display: block; margin-bottom: 6px; }

/* Mood */
.db-moods { display: flex; gap: 8px; justify-content: center; margin: 14px 0; }
.db-mood {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: #f4f5f7; border: 2px solid transparent; border-radius: 14px;
    padding: 10px 12px; cursor: pointer; transition: all .2s; font-size: 26px;
}
.db-mood span { font-size: 10px; color: #76818f; }
.db-mood:hover { background: #fce4ec; transform: scale(1.05); }
.db-mood.on { border-color: #C21A64; background: #fce4ec; transform: scale(1.08); box-shadow: 0 2px 8px rgba(194,26,100,.15); }
.db-mood-expand { padding-top: 14px; margin-top: 14px; border-top: 1px solid #ebedf0; }
.db-slider-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.db-slider-row label { font-size: 12px; color: #5f6c7b; width: 50px; flex-shrink: 0; }
.db-slider-row input[type=range] { flex: 1; accent-color: #C21A64; }
.db-mood-done { text-align: center; padding: 8px 0; }
.db-mood-vals { display: flex; justify-content: center; gap: 28px; margin: 14px 0; }
.db-mood-vals .num { font-size: 24px; font-weight: 800; color: #C21A64; display: block; }
.db-mood-vals .lbl { font-size: 11px; color: #76818f; }
.db-badge-ok { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: #2e7d32; font-weight: 600; }
.db-badge-ok .material-symbols-outlined { font-size: 16px; }

/* Appointments */
.db-row-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f1f3; }
.db-row-item:last-child { border-bottom: none; }
.db-row-dot { width: 8px; height: 8px; border-radius: 50%; background: #d5d8dc; flex-shrink: 0; }
.db-row-dot.today { background: #C21A64; box-shadow: 0 0 0 3px rgba(194,26,100,.15); }
.db-row-item-info { flex: 1; }
.db-row-item-info strong { font-size: 13px; color: #1a1b2e; display: block; }
.db-row-item-info span { font-size: 11px; color: #76818f; }
.db-badge-today { font-size: 10px; background: #C21A64; color: #fff; padding: 2px 8px; border-radius: 6px; font-weight: 600; }

/* Empty */
.db-empty { text-align: center; padding: 20px 0; color: #aab; }
.db-empty .material-symbols-outlined { font-size: 32px; opacity: .2; display: block; margin-bottom: 6px; }
.db-empty p { font-size: 12px; margin-bottom: 10px; line-height: 1.5; }

/* Notes Card Grid */
.db-note-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.db-note-card {
    display: flex; flex-direction: column; min-height: 120px;
    transition: box-shadow .15s;
}
.db-note-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.db-note-provider {
    font-size: 13px; font-weight: 600; color: #C21A64; text-decoration: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
}
.db-note-provider:hover { text-decoration: underline; }
.db-note-content {
    font-size: 13px; line-height: 1.5; color: #3a3a3a; flex: 1;
    white-space: pre-line; overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
    margin: 0;
}
.db-note-date { font-size: 11px; color: #76818f; margin-top: 10px; }
.db-note-action-btn {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: #76818f; line-height: 1; border-radius: 50%;
}
.db-note-action-btn:hover { color: #1a1b2e; background: rgba(0,0,0,0.06); }
.db-note-action-btn .material-symbols-outlined { font-size: 18px; }
.db-note-delete:hover { color: #d32f2f; }

@media (max-width: 1024px) { .db-note-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .db-note-grid { grid-template-columns: 1fr; } }

/* Tables */
.db-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.db-table th { text-align: left; font-size: 11px; color: #76818f; font-weight: 600; padding: 0 0 10px; letter-spacing: .3px; }
.db-table td { padding: 9px 0; border-top: 1px solid #f0f1f3; color: #1a1b2e; }
.db-table td.muted { color: #76818f; }
.db-table tr { cursor: pointer; transition: background .15s; }
.db-table tbody tr:hover { background: #f9fafb; }

/* Sub-Navigation */
.db-nav-sub { padding-left: 36px; font-size: 12px; }
.db-nav-sub .material-symbols-outlined { font-size: 16px; }

/* Cloudspeicher Grid */
.db-cloud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; overflow: hidden; }
.db-cloud-file { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 14px 10px; transition: box-shadow .15s; overflow: hidden; min-width: 0; }
.db-cloud-file:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.db-cloud-thumb { width: 100%; height: 80px; border-radius: 8px; background: #fef5f8; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; overflow: hidden; }
.db-cloud-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.db-cloud-thumb .material-symbols-outlined { font-size: 36px; color: #C21A64; }
.db-cloud-name { font-size: 12px; font-weight: 600; color: #1a1b2e; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%; max-width: 100%; }
.db-cloud-meta { font-size: 11px; color: #76818f; margin-bottom: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%; }
.db-cloud-expires { font-size: 11px; color: #b45309; display: flex; align-items: center; gap: 3px; margin-bottom: 4px; }
.db-cloud-actions { display: flex; gap: 2px; margin-top: auto; }
.btn-active { background: rgba(194,26,100,0.1); color: #C21A64; }

@media (max-width: 1024px) { .db-cloud-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .db-cloud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .db-cloud-grid { grid-template-columns: 1fr; } }

/* Responsive */
@media (max-width: 1100px) {
    .db-stats { grid-template-columns: repeat(3,1fr); }
}

/* Tablet + Mobile: Sidebar wird Off-Canvas, Mobile-Header sichtbar */
@media (max-width: 904px) {
    .db-layout { grid-template-columns: 1fr; }
    .db-main { padding: 16px; }

    .db-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: #fff;
        border-bottom: 1px solid #ebedf0;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .db-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 280px;
        height: 100vh;
        z-index: 200;
        transition: left 0.25s ease;
        box-shadow: none;
    }
    .db-sidebar.open {
        left: 0;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    }
    .db-sidebar-close {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #76818f;
        border-radius: 8px;
    }
    .db-sidebar-close:hover { background: #f0f0f0; }
    .db-overlay.show {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 199;
    }
}

@media (max-width: 768px) {
    .db-h1 { font-size: 20px; }
    .db-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .db-row { grid-template-columns: 1fr; }
    .db-care-row { flex-direction: column; align-items: center; text-align: center; }
    .db-care-step { flex-direction: column; align-items: center; }
}

/* ── Settings Grid ───────────────────────────────────────── */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 768px) { .settings-grid { grid-template-columns: 1fr; } }

/* Toggle-Liste (Auto-Save Einstellungen) */
.db-toggle-list { display: flex; flex-direction: column; gap: 4px; }
.db-toggle-row {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 14px 0; border-bottom: 1px solid #f0f1f3; cursor: pointer;
}
.db-toggle-row:last-child { border-bottom: none; }
.db-toggle-text { flex: 1; }
.db-toggle-text strong { display: block; font-size: 14px; font-weight: 600; color: #1a1b2e; margin-bottom: 2px; }
.db-toggle-text span { display: block; font-size: 12px; color: #76818f; line-height: 1.4; }
.db-notify-toggle { flex-shrink: 0; }
/* Toggle-Switch Akzentfarbe im Dashboard: Pink statt Teal */
.db-main .toggle input:checked { background: #C21A64; }
.db-main .toggle input:focus-visible { outline-color: #C21A64; }

/* ── Favorites Table ─────────────────────────────────────── */
.db-fav-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 13px; }
.db-fav-batch { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; color: #5f6c7b; }
.db-fav-table td, .db-fav-table th { padding: 12px 10px; vertical-align: middle; text-transform: none; }
.favorite-btn.favorited .material-symbols-outlined,
.provider-tile-fav.favorited .material-symbols-outlined,
.provider-card-fav.favorited .material-symbols-outlined { font-variation-settings: 'FILL' 1; color: #C21A64; }
.db-fav-table tbody tr { cursor: default; transition: background .1s; }
.db-fav-table tbody tr:hover { background: #f9fafb; }
.db-fav-name { display: flex; align-items: center; gap: 10px; color: #1a1b2e; font-size: 13px; }
.db-fav-name:hover strong { color: #C21A64; }
.db-fav-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: #ebedf0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; font-weight: 600; color: #5f6c7b; }
.db-fav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hide-mobile {}
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* ── 3-Column Inbox ──────────────────────────────────────── */
/* Folders */
.db-main .inbox-folders {
    width: 180px; flex-shrink: 0;
    display: flex; flex-direction: column; padding: 12px;
}
.inbox-folder {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
    color: #5f6c7b; transition: all .15s;
}
.inbox-folder .material-symbols-outlined { font-size: 18px; color: #76818f; }
.inbox-folder:hover { background: #fef5f8; color: #1a1b2e; }
.inbox-folder.active { background: #fce4ec; color: #C21A64; font-weight: 600; }
.inbox-folder.active .material-symbols-outlined { color: #C21A64; }
.inbox-folder b { margin-left: auto; font-size: 11px; background: #C21A64; color: #fff; padding: 1px 7px; border-radius: 8px; }

/* Message List */
.db-main .inbox-list {
    width: 320px; flex-shrink: 0;
    display: flex; flex-direction: column; overflow-y: auto; padding: 0;
}
.inbox-list-header { padding: 12px; border-bottom: 1px solid #eef0f2; }
.inbox-messages { flex: 1; overflow-y: auto; }
.inbox-msg {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 14px; border-bottom: 1px solid #f5f5f7;
    color: inherit; transition: background .1s; cursor: pointer;
}
.inbox-msg:hover { background: #fef5f8; }
.inbox-msg.active { background: #fce4ec; }
.inbox-msg.unread .inbox-msg-sender { font-weight: 700; }
.inbox-msg.unread .inbox-msg-subject { font-weight: 600; }
.inbox-msg-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: #C21A64;
}
.inbox-msg-body { flex: 1; min-width: 0; }
.inbox-msg-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.inbox-msg-sender { font-size: 13px; font-weight: 500; color: #1a1b2e; }
.inbox-msg-date { font-size: 11px; color: #76818f; flex-shrink: 0; }
.inbox-msg-subject { font-size: 12px; color: #1a1b2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 1px; }
.inbox-msg-preview { font-size: 11px; color: #76818f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Reading Pane */
.db-main .inbox-detail {
    flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding: 0;
}
.inbox-msg-check { flex-shrink: 0; }
.inbox-detail-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 20px 24px; border-bottom: 1px solid #eef0f2;
}
.inbox-detail-body {
    flex: 1; padding: 24px; font-size: 14px; line-height: 1.7; color: #333;
}
.inbox-detail-actions {
    display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid #eef0f2;
}

/* Responsive */
@media (max-width: 1100px) {
    .db-main .inbox-folders { width: 54px; padding: 8px; }
    .inbox-folder span:not(.material-symbols-outlined), .inbox-folder b { display: none; }
    .inbox-folder { justify-content: center; padding: 10px; }
    .inbox-list { width: 260px; }
}
@media (max-width: 768px) {
    .inbox-folders { display: none; }
    .inbox-list { width: 100%; flex: 1; }
    .inbox-detail { display: none; }
}

/* ── Dashboard Sub-Page Overrides ────────────────────────── */
/* Restyle old classes inside .db-main for consistent look */

/* Cards (Border-basiert, Provider-ähnlich) */
.db-main .card,
.db-main .card-elevated,
.db-main .card-filled {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    box-shadow: none;
}
.db-main .card { padding: 20px 22px; }
.db-main .card-filled { background: #f9fafb; }
/* H2 Icons in Dashboard-Cards immer pink */
.db-main .card > h2 > .material-symbols-outlined,
.db-main .card > h3 > .material-symbols-outlined { color: #C21A64; vertical-align: middle; }

/* Buttons */
.db-main .btn-primary {
    background: #C21A64;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    transition: all .15s;
}
.db-main .btn-primary:hover { background: #a8155a; color: #fff; }
.db-main .btn-tonal {
    background: #f4f5f7;
    color: #1a1b2e;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
}
.db-main .btn-tonal:hover { background: #ebedf0; }
.db-main .btn-text {
    background: none;
    border: none;
    color: #C21A64;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
}
.db-main .btn-text:hover { background: #fce4ec; }
.db-main .btn-secondary {
    background: #fff;
    border: 1.5px solid #d5d8dc;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    color: #1a1b2e;
}
.db-main .btn-secondary:hover { border-color: #C21A64; color: #C21A64; }
.db-main .btn.full { width: 100%; justify-content: center; }

/* Tables */
.db-main .data-table,
.db-main table:not(.db-table) {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.db-main .data-table th,
.db-main table:not(.db-table) th {
    text-align: left;
    font-size: 11px;
    color: #76818f;
    font-weight: 600;
    padding: 0 8px 10px 0;
    letter-spacing: .3px;
    border: none;
}
.db-main .data-table td,
.db-main table:not(.db-table) td {
    padding: 10px 8px 10px 0;
    border-top: 1px solid #f0f1f3;
    border-bottom: none;
    color: #1a1b2e;
    font-size: 13px;
}
.db-main .data-table tbody tr:hover,
.db-main table:not(.db-table) tbody tr:hover {
    background: #f9fafb;
}

/* Badges */
.db-main .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 8px;
}

/* Chips */
.db-main .chip {
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border: 1.5px solid #d5d8dc;
    background: #fff;
    color: #5f6c7b;
    transition: all .15s;
}
.db-main .chip:hover,
.db-main .chip.active,
.db-main .chip.chip-selected {
    border-color: #C21A64;
    background: #fce4ec;
    color: #C21A64;
}

/* Form inputs inside dashboard */
.db-main .form-input,
.db-main .form-select,
.db-main .form-textarea {
    border: 1.5px solid #d5d8dc;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    background: #fff;
    transition: border-color .15s;
}
.db-main .form-input:focus,
.db-main .form-select:focus,
.db-main .form-textarea:focus {
    border-color: #C21A64;
    outline: none;
    box-shadow: 0 0 0 3px rgba(194,26,100,.08);
}
.db-main .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1b2e;
    margin-bottom: 6px;
}

/* Empty states */
.db-main .card-filled.text-center,
.db-main .empty-state {
    background: #f9fafb;
    border-radius: 14px;
    padding: 32px 24px;
}
.db-main .card-filled.text-center .material-symbols-outlined {
    color: #c0c4cc;
}

/* Pagination */
.db-main .pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 20px;
}
.db-main .pagination a,
.db-main .pagination span {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #5f6c7b;
    border: 1px solid #ebedf0;
    background: #fff;
}
.db-main .pagination .active,
.db-main .pagination a:hover {
    background: #C21A64;
    color: #fff;
    border-color: #C21A64;
}

/* Notification cards */
.db-main .notification-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 14px 18px;
    margin-bottom: 8px;
}
.db-main .notification-unread {
    background: #fef5f8;
    border-left: 3px solid #C21A64;
}

/* View toggle (favorites) */
.db-main .view-toggle button {
    border-radius: 8px;
    border: 1.5px solid #d5d8dc;
    background: #fff;
    padding: 6px 10px;
}
.db-main .view-toggle button.active {
    background: #C21A64;
    color: #fff;
    border-color: #C21A64;
}

/* Search results header (favorites) */
.db-main .search-results-header {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    border: none;
}

/* FAB (diary) */
.db-main .fab {
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(194,26,100,.25);
}

/* Modal inside dashboard */
.db-main .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* Links in db-main should not underline */
.db-main a { text-decoration: none; }
.db-main a:hover { text-decoration: none; }

/* Section headings inside sub-pages */
.db-main h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1b2e;
}

/* ── Print Styles ─────────────────────────────────────────── */
@media print {
    .site-header,
    .nav-mobile,
    .crisis-banner,
    .crisis-alert,
    .crisis-fab,
    .cookie-banner,
    .scroll-to-top,
    .offline-indicator,
    .provider-tile-fav,
    .favorite-btn,
    .contact-route-buttons,
    .btn-locate,
    #crisisOverlay,
    #crisisAlert,
    .footer-newsletter,
    .site-footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #1A1B2E;
        background: #fff;
    }

    .provider-detail {
        padding: 0;
    }

    .provider-detail .container {
        max-width: 100%;
        padding: 0;
    }

    .breadcrumbs {
        font-size: 9pt;
        color: #666;
    }

    .provider-header-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    a[href^="tel:"]::after,
    a[href^="mailto:"]::after,
    a[href^="#"]::after,
    a[href^="javascript:"]::after,
    .breadcrumbs a::after,
    .nav-desktop a::after {
        content: none;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    .mini-map {
        display: none;
    }
}
