/* ============================================================
   Dashboard - Dark / Yellow theme (Admin, Employer, Seeker)
   ============================================================ */

:root {
    --dash-dark: #111111;
    --dash-dark-2: #242424;
    --dash-yellow: #f5b700;
    --dash-soft-yellow: #fff7d6;
    --dash-white: #ffffff;
    --dash-off-white: #fafafa;
    --dash-text: #111827;
    --dash-muted: #6b7280;
    --dash-border: #e5e7eb;
    --dash-success: #16a34a;
    --dash-warning: #f59e0b;
    --dash-danger: #dc2626;
    --dash-sidebar-w: 280px;
    --dash-radius: 22px;
    --dash-radius-sm: 14px;
    --dash-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

body.dash-app {
    background: var(--dash-off-white);
    color: var(--dash-text);
    overflow-x: hidden;
}

body.dash-app .flash-container {
    z-index: 2000;
}

/* Layout */
.dashboard-layout,
.dash-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.dashboard-main,
.dash-main {
    flex: 1;
    margin-left: var(--dash-sidebar-w);
    min-height: 100vh;
    background: var(--dash-off-white);
    padding: 24px;
    width: calc(100% - var(--dash-sidebar-w));
    box-sizing: border-box;
}

.dashboard-content,
.dash-content {
    animation: dashFadeIn 0.4s ease;
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overlay */
.dash-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
}

.dash-overlay.show {
    display: block;
}

/* Sidebar */
.sidebar,
.dash-sidebar {
    width: var(--dash-sidebar-w);
    min-width: var(--dash-sidebar-w);
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 45%, #242424 100%);
    color: var(--dash-white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1050;
    transition: transform 0.3s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

.sidebar-logo,
.dash-sidebar-brand {
    padding: 28px 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo h2,
.dash-sidebar-brand h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dash-white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.sidebar-logo .role-label,
.dash-sidebar-role {
    display: inline-block;
    margin-top: 4px;
    padding: 5px 12px;
    background: rgba(245, 183, 0, 0.15);
    color: var(--dash-yellow);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sidebar-menu,
.dash-nav {
    flex: 1;
    padding: 16px 14px;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar-menu::-webkit-scrollbar,
.dash-nav::-webkit-scrollbar {
    display: none;
}

.sidebar-link,
.dash-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.94rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-link:hover,
.dash-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--dash-white);
}

.sidebar-link.active,
.dash-nav a.active {
    background: var(--dash-yellow);
    color: var(--dash-dark);
    font-weight: 600;
}

.sidebar-link.active .dash-icon-svg,
.dash-nav a.active .dash-icon-svg {
    color: var(--dash-dark);
}

.dash-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-footer,
.dash-sidebar-footer {
    padding: 16px 14px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-footer a,
.dash-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #fca5a5;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sidebar-footer a:hover,
.dash-sidebar-footer a:hover {
    background: rgba(220, 38, 38, 0.2);
    color: var(--dash-white);
}

/* Top bar */
.dashboard-topbar,
.dash-topbar {
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius-sm);
    padding: 18px 22px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: var(--dash-shadow);
}

.dash-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dash-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dash-border);
    border-radius: 10px;
    background: var(--dash-white);
    color: var(--dash-dark);
    cursor: pointer;
}

.dashboard-topbar h1,
.dash-topbar h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin-bottom: 4px;
}

.dash-topbar .text-muted {
    color: var(--dash-muted);
    font-size: 0.9rem;
}

.dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dash-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--dash-soft-yellow);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dash-dark);
}

.dash-topbar-date {
    font-size: 0.88rem;
    color: var(--dash-muted);
}

/* Stat cards */
.stats-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius);
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--dash-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dash-soft-yellow);
    color: var(--dash-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon .dash-icon-svg {
    width: 24px;
    height: 24px;
}

.stat-card-body strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dash-dark);
    line-height: 1.2;
}

.stat-card-body span {
    font-size: 0.85rem;
    color: var(--dash-muted);
    margin-top: 4px;
    display: block;
}

.dash-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin: 8px 0 16px;
}

/* Panel cards */
.panel-card,
.table-card {
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius-sm);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--dash-shadow);
}

.panel-card h2,
.panel-card h3,
.table-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin-bottom: 16px;
}

.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

/* Tables */
.data-table-wrap,
.table-responsive,
.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.data-table-wrap::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.admin-table-wrap::-webkit-scrollbar {
    display: none;
    height: 0;
}

.data-table,
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 560px;
}

.data-table th,
.data-table td,
.table th,
.table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--dash-border);
}

.data-table th,
.table th {
    background: var(--dash-off-white);
    font-weight: 600;
    color: var(--dash-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table tbody tr:hover,
.table tbody tr:hover {
    background: #f9fafb;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-approved { background: #dcfce7; color: #166534; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-closed { background: #e5e7eb; color: #374151; }
.badge-reviewed { background: var(--dash-soft-yellow); color: #854d0e; }
.badge-accepted { background: #dcfce7; color: #166534; }
.badge-admin { background: var(--dash-dark); color: var(--dash-white); }
.badge-employer { background: var(--dash-dark-2); color: var(--dash-yellow); }
.badge-seeker { background: var(--dash-soft-yellow); color: var(--dash-dark); }
.badge-suspended { background: #fee2e2; color: #991b1b; }
.badge-open { background: #fef9c3; color: #854d0e; }

.badge-job-pending,
.badge-app-pending { background: #fef9c3; color: #854d0e; }
.badge-job-approved,
.badge-app-accepted { background: #dcfce7; color: #166534; }
.badge-job-rejected,
.badge-app-rejected { background: #fee2e2; color: #991b1b; }
.badge-job-closed { background: #e5e7eb; color: #374151; }
.badge-app-reviewed { background: var(--dash-soft-yellow); color: #854d0e; }
.badge-status-active { background: #dcfce7; color: #166534; }
.badge-status-blocked { background: #fee2e2; color: #991b1b; }
.badge-role-admin { background: var(--dash-dark); color: var(--dash-white); }
.badge-role-employer { background: var(--dash-dark-2); color: var(--dash-yellow); }
.badge-role-seeker { background: var(--dash-soft-yellow); color: var(--dash-dark); }

/* Buttons */
.btn,
.dash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.dash-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-primary-dark,
.btn-primary {
    background: var(--dash-dark);
    color: var(--dash-yellow);
}

.btn-yellow {
    background: var(--dash-yellow);
    color: var(--dash-dark);
}

.btn-outline {
    background: transparent;
    color: var(--dash-dark);
    border: 1px solid var(--dash-border);
}

.btn-danger {
    background: var(--dash-danger);
    color: var(--dash-white);
}

.btn-success {
    background: var(--dash-success);
    color: var(--dash-white);
}

.btn-warning {
    background: var(--dash-warning);
    color: var(--dash-dark);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-action-card {
    flex: 1;
    min-width: 160px;
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius-sm);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dash-text);
    box-shadow: var(--dash-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.quick-action-card:hover {
    transform: translateY(-3px);
    border-color: var(--dash-yellow);
}

.quick-action-card .dash-icon-svg {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    color: var(--dash-dark);
}

.quick-action-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dash-dark);
}

/* Forms */
.form-control,
.dash-form input,
.dash-form select,
.dash-form textarea,
.filter-card input,
.filter-card select,
.filter-row input,
.filter-row select,
.panel-card input,
.panel-card select,
.panel-card textarea,
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--dash-border);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--dash-white);
    color: var(--dash-text);
    box-sizing: border-box;
}

.form-control:focus,
.dash-form input:focus,
.dash-form select:focus,
.dash-form textarea:focus,
.panel-card input:focus,
.panel-card select:focus,
.panel-card textarea:focus {
    outline: none;
    border-color: var(--dash-yellow);
    box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dash-text);
}

.filter-card,
.filter-form {
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}

.filter-row,
.filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid-2 .form-group-full {
    grid-column: 1 / -1;
}

.inline-form {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.text-muted {
    color: var(--dash-muted);
}

/* Job cards on seeker dashboard */
.dash-job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.dash-job-card {
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: var(--dash-radius-sm);
    padding: 20px;
    border-top: 3px solid var(--dash-yellow);
    box-shadow: var(--dash-shadow);
    transition: transform 0.2s ease;
}

.dash-job-card:hover {
    transform: translateY(-3px);
}

.dash-job-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dash-dark);
}

.dash-job-card p {
    font-size: 0.88rem;
    color: var(--dash-muted);
    margin-bottom: 6px;
}

/* Interview invitation cards */
.interview-invite-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interview-invite-card {
    position: relative;
    background: var(--dash-white);
    border: 1px solid var(--dash-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interview-invite-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.interview-invite-accent {
    height: 4px;
    background: var(--dash-yellow);
}

.interview-invite-card--accepted .interview-invite-accent {
    background: var(--dash-success);
}

.interview-invite-card--rejected .interview-invite-accent {
    background: var(--dash-danger);
}

.interview-invite-card--pending .interview-invite-accent {
    background: linear-gradient(90deg, var(--dash-yellow), #facc15);
}

.interview-invite-inner {
    padding: 24px;
}

.interview-invite-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dash-border);
}

.interview-invite-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dash-muted);
    margin-bottom: 6px;
}

.interview-invite-head h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin: 0 0 8px;
    line-height: 1.3;
}

.interview-invite-employer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.92rem;
    color: var(--dash-muted);
}

.interview-invite-employer .dash-icon-svg {
    width: 18px;
    height: 18px;
    color: var(--dash-dark);
}

.interview-invite-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.interview-invite-meta {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--dash-off-white);
    border-radius: 14px;
    border: 1px solid var(--dash-border);
}

.interview-invite-meta--full {
    grid-column: 1 / -1;
}

.interview-meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--dash-soft-yellow);
    color: var(--dash-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interview-meta-icon .dash-icon-svg {
    width: 20px;
    height: 20px;
}

.interview-meta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dash-muted);
    margin-bottom: 4px;
}

.interview-invite-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dash-dark);
    line-height: 1.45;
    font-weight: 600;
}

.interview-message-text {
    font-weight: 500;
}

.interview-invite-footer {
    padding-top: 18px;
    border-top: 1px solid var(--dash-border);
}

.interview-invite-actions {
    justify-content: flex-end;
    width: 100%;
}

.interview-footer-note {
    font-size: 0.88rem;
    text-align: right;
    width: 100%;
}

.interview-invite-actions .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .interview-invite-grid {
        grid-template-columns: 1fr;
    }

    .interview-invite-head {
        flex-direction: column;
    }

    .interview-invite-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .interview-invite-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .interview-footer-note {
        text-align: center;
    }
}

.location-hint {
    font-size: 0.85rem;
    color: var(--dash-muted);
    margin-top: 8px;
}

/* Applications table – compact actions (scoped, does not affect other tables) */
.applications-table .app-actions-cell {
    width: 1%;
    white-space: nowrap;
    text-align: right;
    vertical-align: middle;
}

.applications-table .app-actions {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.applications-table .app-status-row {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.applications-table .app-status-select {
    width: auto;
    min-width: 104px;
    max-width: 120px;
    padding: 6px 26px 6px 10px;
    font-size: 0.8rem;
    font-family: inherit;
    border: 1px solid var(--dash-border);
    border-radius: 10px;
    background: var(--dash-white);
    color: var(--dash-text);
    line-height: 1.3;
}

.applications-table .app-status-select:focus {
    outline: none;
    border-color: var(--dash-yellow);
    box-shadow: 0 0 0 2px rgba(245, 183, 0, 0.25);
}

.applications-table .app-links-row {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

@media (max-width: 768px) {
    .applications-table .app-actions {
        align-items: stretch;
    }

    .applications-table .app-status-row,
    .applications-table .app-links-row {
        justify-content: flex-end;
    }
}

/* Profile page */
.profile-page-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.profile-summary-card {
    background: linear-gradient(160deg, #111111 0%, #242424 100%);
    color: var(--dash-white);
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 90px;
}

.profile-avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--dash-yellow);
    color: var(--dash-dark);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 183, 0, 0.35);
}

.profile-summary-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dash-white);
}

.profile-summary-role {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.profile-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.profile-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info-list li:last-child {
    border-bottom: none;
}

.profile-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 183, 0, 0.15);
    color: var(--dash-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-info-icon .dash-icon-svg {
    width: 18px;
    height: 18px;
}

.profile-info-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
}

.profile-info-list strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dash-white);
    word-break: break-word;
}

.profile-form-card {
    padding: 28px;
}

.profile-form-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--dash-border);
}

.profile-form-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin: 0 0 6px;
}

@media (max-width: 992px) {
    .profile-page-layout {
        grid-template-columns: 1fr;
    }

    .profile-summary-card {
        position: static;
    }
}

/* Report pages */
.report-page-intro {
    margin-bottom: 24px;
}

.report-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dash-dark);
    margin-bottom: 8px;
}

.report-page-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
}

.report-form-card {
    padding: 28px;
}

.report-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--dash-dark);
}

.report-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.report-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--dash-muted);
    line-height: 1.5;
}

.report-info-list .dash-icon-svg {
    flex-shrink: 0;
    color: var(--dash-dark);
    margin-top: 2px;
}

.report-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dash-text);
}

.report-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.report-entry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 18px 12px;
    border: 2px solid var(--dash-border);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.report-entry-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.report-entry-card:has(input:checked) {
    border-color: var(--dash-yellow);
    background: var(--dash-soft-yellow);
}

.report-entry-icon .dash-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--dash-dark);
}

.report-entry-card strong {
    font-size: 0.9rem;
    color: var(--dash-dark);
}

.report-entry-card .text-muted {
    font-size: 0.78rem;
}

.report-selected-card {
    background: var(--dash-off-white);
    border: 1px solid var(--dash-border);
    border-left: 4px solid var(--dash-yellow);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.report-selected-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dash-muted);
    margin-bottom: 8px;
}

.report-selected-card h3 {
    font-size: 1.15rem;
    color: var(--dash-dark);
    margin-bottom: 12px;
}

.report-selected-meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.report-selected-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dash-muted);
    margin-bottom: 6px;
}

.report-search-input {
    margin-bottom: 10px;
}

.report-select-list {
    min-height: 140px;
}

.report-select-list option {
    padding: 8px;
}

.report-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.report-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.report-details-preview {
    max-width: 220px;
    font-size: 0.85rem;
    color: var(--dash-muted);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid,
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .report-page-grid {
        grid-template-columns: 1fr;
    }

    .report-entry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar,
    .dash-sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open,
    .dash-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-main,
    .dash-main {
        margin-left: 0;
        width: 100%;
        padding: 16px;
    }

    .dash-menu-btn {
        display: flex;
    }

    .stats-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .dash-topbar-date {
        display: none;
    }
}

@media (max-width: 480px) {
    .dashboard-topbar h1,
    .dash-topbar h1 {
        font-size: 1.15rem;
    }
}
