/* ============================================================
   HUSBAROMETERN - REPORT
   ============================================================ */

.report-card {
    border: 1px solid #dbe6d7;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    margin-bottom: 14px;
}

.report-overall {
    background: linear-gradient(180deg, #f6fbf3 0%, #eef7ea 100%);
}

.report-overall-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.report-overall-score {
    min-width: 120px;
    text-align: right;
}

.report-score-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #20462d;
}

.report-score-sub {
    font-size: 0.82rem;
    color: #496256;
}

.report-track {
    width: 100%;
    margin-top: 10px;
    height: 12px;
}

.report-bar {
    background: linear-gradient(90deg, #d32f2f 0%, #fbc02d 50%, #2e7d32 100%);
}

.report-section-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.report-health-row {
    margin-top: 10px;
}

.report-health-label {
    font-weight: 700;
    color: #2a3f34;
    margin-bottom: 6px;
}

.report-group-grid {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.report-group-card {
    border: 1px solid #dbe7d6;
    border-radius: 12px;
    background: #fcfffb;
    padding: 10px;
}

.report-group-title {
    font-weight: 800;
    color: #28432f;
    margin-bottom: 8px;
}

.report-action-list {
    margin: 0;
    padding-left: 18px;
}

.report-action-title {
    font-weight: 700;
    color: #2b3b33;
}

.report-action-text {
    color: #43544a;
    margin-bottom: 6px;
}

.report-total {
    border: 2px solid #ccdcca;
}

.admin-table-wrap {
    overflow: auto;
}

.admin-table-wrap .table {
    margin-bottom: 0;
}

.admin-table-wrap thead th {
    background: #f4f7fc;
    position: sticky;
    top: 0;
    z-index: 1;
}

.admin-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1100px) {
    .admin-two-column {
        grid-template-columns: 1fr;
    }
}

/* ─── ProcessingIndicator ─── */
