.dashboard-live-page {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
    min-height: calc(100vh - 80px);
}

.dashboard-live-sidebar {
    background: linear-gradient(180deg, #0f172a 0%, #16243e 100%) !important;
    height: 100vh !important;
    position: fixed !important;
    padding: 3rem 3.5rem !important;
}

.dashboard-avatar {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.2);
}

.dashboard-live-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.dashboard-live-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-live-badge {
    padding: 9px 14px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dashboard-live-badge--soft {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.dashboard-stat-card,
.dashboard-panel-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.dashboard-stat-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -30px;
    top: -30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.dashboard-stat-card--blue {
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.dashboard-stat-card--green {
    background: linear-gradient(180deg, #ffffff, #f4fffb);
}

.dashboard-stat-card--amber {
    background: linear-gradient(180deg, #ffffff, #fffaf1);
}

.dashboard-stat-card--rose {
    background: linear-gradient(180deg, #ffffff, #fff5f4);
}

.dashboard-panel-card .card-header {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-table-live thead th {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .dashboard-live-header {
        flex-direction: column;
    }

    .dashboard-live-sidebar {
        position: static !important;
        height: auto !important;
        padding: 3rem 1.5rem !important;
    }
}
