/* homepage.css */

.homepage-container {
    padding: 0 2rem 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    animation: fade-in 0.5s ease-out;
}

/* Header Section */
.homepage-header {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* NEW HOMEPAGE V5 CLASSES */
.hp-top-section {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    height: 380px;
}

.hp-main-timeline {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex: 0 0 auto;
}

.hp-date-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-primary);
    font-family: var(--font-base);
}

.hp-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-pill-group {
    display: flex;
    background: #e5e7eb;
    border-radius: 14px;
    padding: 4px;
    gap: 2px;
}

.nav-pill {
    padding: 6px 16px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    background: transparent;
    color: #6b7280;
    transition: all 0.2s;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-pill.active-pill {
    background: white !important;
    color: #111 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hp-pill-divider {
    width: 1px;
    background: #d1d5db;
    margin: 4px 2px;
}

.hp-date-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.hp-timeline-card {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    overflow-y: hidden;
}

.hp-sidebar-panel {
    width: 340px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.side-activities-card {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    overflow: hidden;
    background: #1e293b;
    color: white;
    border-radius: 16px;
}

.hp-sidebar-panel .hp-v6-controls {
    display: flex !important;
    background: #0f172a !important;
    padding: 5px !important;
    border-radius: 12px !important;
    gap: 6px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.hp-sidebar-panel .hp-v6-pill {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 34px !important;
    border-radius: 8px !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    user-select: none !important;
    border: none !important;
    padding: 0 !important;
}

.hp-sidebar-panel .hp-v6-pill.active {
    background: #334155 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.hp-sidebar-panel .hp-v6-pill:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05) !important;
}

.hp-sidebar-panel .hp-v6-add-btn {
    flex: 1 !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #4e92d8 !important;
    color: white !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.hp-sidebar-panel .hp-v6-add-btn:hover {
    background: #3b82f6 !important;
    transform: translateY(-1px) !important;
}

.hp-v6-pill .material-icons-round {
    font-size: 14px !important;
    color: inherit !important;
}

.hp-v6-pill .tab-count {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    font-family: var(--font-titles) !important;
    color: inherit !important;
}

.hp-activities-list-container {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-right: 4px;
    min-height: 0;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    outline: none;
}

.task-checkbox:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.05);
}

.task-checkbox:checked {
    background: #10b981 !important;
    border-color: #10b981 !important;
}

.task-checkbox:checked::after {
    content: 'check';
    font-family: 'Material Icons Round';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.vedi-agenda-btn {
    flex: 1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0.02em;
}

.overdue-filter-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
}

.overdue-filter-btn.active {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.overdue-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.overdue-filter-btn .material-icons-round {
    font-size: 18px;
}

.vedi-agenda-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}

.hp-bottom-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.hp-widget-header {
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hp-widget-tabs {
    background: var(--bg-tertiary);
    padding: 5px;
    border-radius: 12px;
    display: flex;
    gap: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vedi-tutti-btn {
    color: var(--brand-blue);
    font-weight: 700;
}

.hp-list-content {
    height: 420px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Agenda Mobile V5004 */
.mobile-agenda-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 1rem;
    height: 100%;
}

.agenda-mobile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.agenda-mobile-card:active {
    background: #f1f5f9;
    transform: scale(0.98);
}

.agenda-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.agenda-time .start {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.agenda-time .end {
    font-size: 0.75rem;
    color: #64748b;
}

.agenda-content {
    flex: 1;
}

.agenda-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.type-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.booking .type-badge {
    background: #dcfce7;
    color: #166534;
}

.appointment .type-badge {
    background: #f3e8ff;
    color: #6b21a8;
}

.client-name {
    font-size: 0.75rem;
    color: #64748b;
}

.agenda-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.agenda-meta {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
    margin-top: 4px;
}

.empty-agenda {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-align: center;
}

.empty-agenda span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.greeting-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-titles);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.greeting-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Main Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* 2/3 for calendar, 1/3 for side widgets */
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Widgets General */
.dashboard-widget {
    background: var(--bg-card);
    /* Glass effect var */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-widget:hover {
    box-shadow: var(--shadow-md);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Timeline Widget (Top Left) */
.timeline-widget {
    min-height: 300px;
}

.timeline-controls {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 4px;
    border-radius: 10px;
}

.timeline-btn {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.timeline-btn.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Horizontal Timeline Scroll */
.timeline-scroll-area {
    display: flex;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    position: relative;
    /* ensure proper stacking set context */
    isolation: isolate;
}

.timeline-scroll-area::-webkit-scrollbar {
    display: none;
}

.timeline-track {
    align-items: stretch;
}

.timeline-hour-col {
    min-width: 120px;
    width: 120px;
    /* Force rigid width */
    position: relative;
    border-left: 1px dashed var(--glass-border);
    padding-left: 0.5rem;
    height: 180px;
    /* Increased height */
    box-sizing: border-box;
    /* Include padding/border in width */
}

.timeline-hour-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    font-family: monospace;
}

.timeline-event-card {
    position: absolute;
    top: 30px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: transform 0.2s, z-index 0s;
    z-index: 10;
    /* Ensure content clipping */
    overflow: hidden;
}

.timeline-event-card:hover {
    transform: translateY(-4px) scale(1.02);
    z-index: 20;
}

.timeline-event-card.past {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    box-shadow: none;
    opacity: 0.7;
}

/* Upcoming Meeting Widget (Top Right) */
.next-up-widget {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    /* Dark theme accent */
    color: white;
    border: none;
}

.next-up-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1rem;
}

.meeting-time-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meeting-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.participants-avatars {
    display: flex;
    padding-left: 10px;
}

.participant-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1e293b;
    margin-left: -10px;
    background: #cbd5e1;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-weight: 700;
}

.join-btn {
    margin-top: auto;
    background: #38bdf8;
    /* Sky blue */
    color: #0f172a;
    border: none;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.join-btn:hover {
    background: #7dd3fc;
    transform: translateY(-1px);
}

/* Premium Card Lists */
.premium-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Premium List-style Project Items */
.project-card {
    display: flex;
    align-items: center;
    padding: 12px;
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 12px;
}

.project-card:hover {
    background: var(--bg-tertiary-alpha);
}

.project-card:last-child {
    border-bottom: none;
}

.project-card .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.project-card .card-main {
    flex: 1;
    min-width: 0;
}

.project-card .card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card .card-meta {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-card .card-badge-id {
    font-family: monospace;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.65rem;
}

/* Premium Linear-style Activity List */
.activity-row {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    padding: 10px 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid #e2e8f0;
}

.activity-row:hover {
    background: var(--bg-tertiary-alpha);
}

.activity-row.is-parent {
    margin-top: 4px;
}

.activity-row.sub-item {
    margin-left: 16px;
}

/* Hierarchical Connector */
.activity-row.sub-item::after {
    content: '';
    position: absolute;
    left: -12px;
    top: -8px;
    bottom: 50%;
    width: 12px;
    border-left: 1.5px solid var(--surface-3);
    border-bottom: 1.5px solid var(--surface-3);
    border-radius: 0 0 0 6px;
}

.activity-row .row-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 8px;
}

.activity-row .row-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.activity-row .row-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-row .row-context {
    font-size: 0.65rem;
    color: var(--brand-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

/* Minimal Status Dot/Check */

.collapse-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--text-tertiary);
    transition: all 0.2s;
}

.collapse-btn:hover {
    background: var(--surface-2);
    color: var(--text-primary);
}

/* Bottom Row Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s;
    cursor: pointer;
}

.project-item:last-child {
    border-bottom: none;
}

.project-item:hover {
    background: var(--bg-tertiary);
}

.project-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    /* Bottom align bars */
    justify-content: space-between;
    height: 120px;
    gap: 8px;
    padding-top: 1rem;
}

.chart-bar {
    flex: 1;
    background: var(--brand-blue);
    opacity: 0.2;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.chart-bar.active {
    opacity: 1;
    background: linear-gradient(to top, var(--brand-blue), #60a5fa);
}

/* KPI Row - Refined Design */
.widget-kpi-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.kpi-pill {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
    border-right: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.kpi-pill:last-child {
    border-right: none;
}

.kpi-pill .kpi-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.kpi-pill .kpi-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-titles);
}

.kpi-pill .kpi-value i {
    font-size: 18px;
    opacity: 0.5;
}

/* Status variants for KPIs */
.kpi-pill.status-danger .kpi-value {
    color: #ef4444;
}

.kpi-pill.status-danger .kpi-label {
    color: rgba(239, 68, 68, 0.7);
}

.kpi-pill.status-warning .kpi-value {
    color: #f97316;
}

.kpi-pill.status-warning .kpi-label {
    color: rgba(249, 115, 22, 0.7);
}

.kpi-pill.status-success .kpi-value {
    color: #10b981;
}

.kpi-pill.status-success .kpi-label {
    color: rgba(16, 185, 129, 0.7);
}

.kpi-pill.status-info .kpi-value {
    color: var(--brand-blue);
}

.kpi-pill.status-info .kpi-label {
    color: var(--brand-blue);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .widget-kpi-row {
        flex-wrap: wrap;
        gap: 1rem 0;
    }

    .kpi-pill {
        width: 50%;
        margin-bottom: 0.5rem;
    }

    .kpi-pill:nth-child(2n) {
        border-right: none;
    }
}

/* Responsive */
@media (max-width: 1200px) {

    .dashboard-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hp-top-section {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }

    .hp-nav-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hp-date-text {
        font-size: 1.1rem;
    }

    .hp-timeline-card {
        height: 350px;
        /* Fixed height on mobile to prevent infinite vertical growth */
    }

    .hp-sidebar-panel {
        width: 100%;
    }

    .side-activities-card {
        height: 450px;
    }

    .hp-bottom-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .hp-widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hp-list-content {
        height: auto;
        max-height: 400px;
    }

    .dashboard-widget {
        padding: 1.25rem;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border: 1px solid #e2e8f0;
    }

    .project-card {
        padding: 14px;
        margin-bottom: 8px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #f1f5f9 !important;
    }

    .project-card:last-child {
        margin-bottom: 0;
    }

    .hp-date-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-pill {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
    }

    .hp-pill-group {
        width: 100%;
    }

    .hp-nav-controls {
        width: 100%;
        flex-direction: column;
    }

    .greeting-section h1 {
        font-size: 2rem;
    }

    .greeting-section p {
        font-size: 0.95rem;
    }

    .dashboard-grid {
        gap: 1rem;
    }

    .dashboard-widget {
        padding: 1.25rem;
    }

    .widget-title {
        font-size: 1.15rem;
    }

    /* Make timeline scrollable appropriately */
    .timeline-scroll-area {
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    /* Make chart bars horizontally scrollable */
    .chart-bars {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
        /* Prevent shrinking on small screens */
    }

    .chart-bar {
        min-width: 30px;
        /* Ensure they don't get too thin */
    }

    .project-card {
        padding: 10px 8px;
    }

    /* KPI Adjustments */
    .widget-kpi-row {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }

    .kpi-pill {
        width: 100%;
        border-right: none;
        border-bottom: 1px dashed var(--glass-border);
        padding: 0.75rem 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
    }

    .kpi-pill:last-child {
        border-bottom: none;
    }

    .kpi-pill .kpi-label {
        margin-bottom: 0;
    }

    .bottom-grid {
        gap: 1rem;
    }
}
