:root {
    --app-bg: #eff2fb;
    --surface: #ffffff;
    --surface-soft: #f7f8fd;
    --border: #dbe2f0;
    --text: #1f2a44;
    --muted: #7e88a8;
    --primary: #4b46a6;
    --primary-soft: #ecebff;
    --success: #16a365;
    --danger: #d9536f;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 12px 30px rgba(26, 32, 77, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--app-bg);
    color: var(--text);
}

.admin-layout {
    min-height: 100vh;
    display: flex;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #564fc4 0%, #403a96 100%);
    color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 20;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
}

.sidebar-title {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sidebar-user {
    color: rgba(255, 255, 255, 0.82);
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.side-nav .nav-link {
    border: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s ease;
}

.side-nav .nav-link i {
    font-size: 1rem;
}

.side-nav .nav-link:hover,
.side-nav .nav-link.active {
    background: #fff;
    color: #352f86;
}

.admin-main {
    flex: 1;
    padding: 1.1rem;
    position: relative;
}

.content-shell {
    max-width: 1300px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.page-title {
    font-size: clamp(1.6rem, 2.2vw, 2.6rem);
    line-height: 1.1;
    font-weight: 700;
}

.page-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
}

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

.metric-card,
.panel-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background: var(--surface);
}

.metric-label {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.card-header {
    background: var(--surface-soft);
    border-bottom: 1px solid var(--border);
    border-top-left-radius: var(--radius-lg) !important;
    border-top-right-radius: var(--radius-lg) !important;
}

.form-label {
    font-weight: 500;
}

.form-control,
.form-select {
    border-color: #cfd7e8;
    border-radius: var(--radius-md);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(75, 70, 166, 0.18);
    border-color: #8d89d9;
}

.btn {
    border-radius: 12px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success);
    border-color: var(--success);
}

.modern-table thead th {
    background: #32489b;
    color: #fff;
    border: 0;
    font-weight: 600;
}

.modern-table tbody tr:hover {
    background: #f9faff;
}

.modal-content {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.sidebar-toggle {
    position: fixed;
    left: 0.9rem;
    top: 0.9rem;
    border-radius: 10px;
    z-index: 40;
    box-shadow: var(--shadow);
}

.alert {
    border-radius: 12px;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #7c3aed 100%);
}

.login-card {
    width: 360px;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
    padding: 28px 26px 22px;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.login-title {
    margin: 4px 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}

.input-control {
    width: 100%;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    padding: 10px 12px 10px 34px;
    font-size: 13px;
    color: #334155;
    outline: none;
    background-color: #fff;
}

.input-control:focus {
    border-color: #7aa2ff;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.18);
}

.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
}

.btn-login {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #0ea5e9 0%, #7c3aed 100%);
}

.error-box {
    margin-bottom: 10px;
    border-radius: 8px;
    background: #ffe9ec;
    color: #b3394a;
    border: 1px solid #ffc9d0;
    padding: 8px 10px;
    font-size: 12px;
    text-align: left;
}

@media (max-width: 991.98px) {
    .admin-sidebar {
        position: fixed;
        left: -300px;
        transition: left 0.25s ease;
        border-top-right-radius: 22px;
        border-bottom-right-radius: 22px;
    }

    .admin-sidebar.open {
        left: 0;
    }

    .admin-main {
        padding-top: 3.8rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .btn {
        flex: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
:root {
    --app-bg: #f3f6fb;
    --app-surface: #ffffff;
    --app-border: #e4eaf3;
    --app-text: #1f2937;
    --app-muted: #6b7280;
    --app-primary: #2563eb;
    --app-primary-soft: #e9f2ff;
    --app-success: #198754;
    --app-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--app-bg);
    color: var(--app-text);
}

.app-shell {
    animation: fadeInUp 0.35s ease-out;
}

.card {
    border: 1px solid var(--app-border);
    border-radius: 14px;
    box-shadow: var(--app-shadow);
}

.card-header {
    background: #f8fbff;
    border-bottom: 1px solid var(--app-border);
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.btn {
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.form-control,
.form-select {
    border-radius: 10px;
    border-color: #d5deea;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
    border-color: #90b4ff;
}

.side-nav .nav-link {
    color: var(--app-text);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.side-nav .nav-link.active,
.side-nav .nav-link:hover {
    background-color: var(--app-primary-soft);
    color: var(--app-primary);
}

.table thead.table-dark th {
    background-color: #1e3a8a;
}

.modal-content {
    border-radius: 14px;
    border: 1px solid var(--app-border);
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #7c3aed 100%);
}

.login-card {
    width: 360px;
    background: var(--app-surface);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
    padding: 28px 26px 22px;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.login-title {
    margin: 4px 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}

.input-control {
    width: 100%;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    padding: 10px 12px 10px 34px;
    font-size: 13px;
    color: #334155;
    outline: none;
    background-color: #fff;
}

.input-control:focus {
    border-color: #7aa2ff;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.18);
}

.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
}

.btn-login {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #0ea5e9 0%, #7c3aed 100%);
}

.error-box {
    margin-bottom: 10px;
    border-radius: 8px;
    background: #ffe9ec;
    color: #b3394a;
    border: 1px solid #ffc9d0;
    padding: 8px 10px;
    font-size: 12px;
    text-align: left;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Admin dashboard (admin.php) ───────────────────────────── */
body.admin-page {
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(86, 79, 196, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(37, 99, 235, 0.08), transparent),
        var(--app-bg);
}

.admin-sidebar .side-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
}

.admin-sidebar .side-nav .nav-link:hover,
.admin-sidebar .side-nav .nav-link.active {
    background: #fff;
    color: #352f86;
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
}

.sidebar-footer .nav-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.sidebar-footer .nav-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.page-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f46b8;
}

.page-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f46b8, #2563eb);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(79, 70, 184, 0.28);
}

.page-date-dot {
    opacity: 0.45;
    margin: 0 0.35rem;
}

.dash-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4f46b8 0%, #2563eb 55%, #0ea5e9 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.22);
    position: relative;
    overflow: hidden;
}

.dash-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.dash-hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.dash-hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 0.75rem;
}

.dash-hero-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.dash-hero-text {
    font-size: 0.92rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 520px;
}

.dash-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dash-btn-final {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 600;
}

.dash-btn-final:hover {
    background: #fff;
    border-color: #fff;
    color: #352f86;
}

.dash-hero-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    z-index: 1;
}

.dash-progress-ring {
    --progress: 0;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: conic-gradient(
        #ffffff 0deg,
        #ffffff calc(var(--progress) * 3.6deg),
        rgba(255, 255, 255, 0.22) calc(var(--progress) * 3.6deg),
        rgba(255, 255, 255, 0.22) 360deg
    );
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.dash-progress-inner {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4338ca 0%, #2563eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
}

.dash-progress-inner strong {
    font-size: 1.35rem;
    font-weight: 700;
}

.dash-progress-inner span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.88;
}

.dash-hero-mini-stats {
    display: flex;
    gap: 0.65rem;
}

.dash-mini-stat {
    min-width: 64px;
    padding: 0.45rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
}

.dash-mini-stat-num {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.dash-mini-stat-lbl {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.dash-activity-track-wrap {
    margin-bottom: 1.25rem;
    padding: 0.9rem 1.1rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.dash-activity-track-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
}

.dash-activity-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
}

.dash-activity-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex: 1;
    max-width: 44px;
    transition: transform 0.2s ease;
    cursor: default;
}

.dash-activity-dot:hover {
    transform: translateY(-2px);
}

.dash-activity-dot.is-done {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
    border: 1px solid #6ee7b7;
}

.dash-activity-dot.is-pending {
    background: #f8fafc;
    color: #94a3b8;
    border: 1px dashed #cbd5e1;
}

.dash-activity-dot.is-pending span {
    font-size: 0.78rem;
}

.dash-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(26, 32, 77, 0.12);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dash-stat-card--pending .dash-stat-icon {
    background: #fff4e5;
    color: #d97706;
}

.dash-stat-card--done .dash-stat-icon {
    background: #e8f8ef;
    color: #16a365;
}

.dash-stat-card--total .dash-stat-icon {
    background: var(--primary-soft);
    color: var(--primary);
}

.dash-stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.dash-stat-value {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
}

.dash-stat-hint {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.dash-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: #e8edf7;
    overflow: hidden;
}

.dash-progress-bar-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4f46b8, #2563eb);
    transition: width 0.5s ease;
}

.dash-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    height: 100%;
}

.dash-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dash-panel-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.dash-panel-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.2rem 0 0;
}

.dash-panel-body {
    padding: 1rem 1.35rem 1.35rem;
}

.dash-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.dash-badge--warning {
    background: #fff4e5;
    color: #b45309;
}

.dash-activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.dash-activity-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fafbff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.dash-activity-item:hover {
    border-color: #b8c4e8;
    background: #fff;
}

.dash-activity-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.dash-activity-item div {
    flex: 1;
    min-width: 0;
}

.dash-activity-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.dash-activity-item span:not(.dash-activity-status) {
    font-size: 0.8rem;
    color: var(--muted);
}

.dash-activity-status {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #b45309;
    background: #fff4e5;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.dash-empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--success);
}

.dash-empty-state i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.dash-empty-state p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.dash-final-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #0f766e 0%, #0d9488 45%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(13, 148, 136, 0.28);
    overflow: hidden;
}

.dash-final-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.dash-final-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    position: relative;
}

.dash-final-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.dash-final-text {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-bottom: 1rem;
    position: relative;
}

.dash-final-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    position: relative;
}

.dash-final-features li {
    font-size: 0.84rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
}

.dash-quick-panel {
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.dash-quick-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.dash-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}

.dash-quick-btn {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
    cursor: pointer;
}

.dash-quick-btn i {
    font-size: 1.15rem;
    color: var(--primary);
}

.dash-quick-btn:hover {
    background: var(--primary-soft);
    border-color: #b8c4e8;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .dash-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .dash-hero-content {
        max-width: none;
    }

    .dash-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .dash-hero-actions {
        justify-content: center;
    }

    .dash-activity-track {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .dash-activity-item {
        flex-wrap: wrap;
    }

    .dash-activity-status {
        margin-left: calc(36px + 0.85rem);
    }
}
