* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: #f4f7fc;
    color: #283040;
}

.report-wrap {
    width: min(96vw, 1800px);
    margin: 18px auto 24px;
}

h1 {
    margin: 0 0 14px;
    font-size: 24px;
}

.report-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.report-head h1 {
    margin: 0;
}

.report-admin-link {
    text-decoration: none;
    border: 1px solid #c7d5eb;
    border-radius: 10px;
    padding: 9px 12px;
    color: #2f466a;
    background: #ffffff;
    font-weight: 600;
}

.report-table-wrap {
    overflow: auto;
    border: 1px solid #d2dced;
    border-radius: 12px;
    background: #ffffff;
}

.report-table {
    border-collapse: collapse;
    min-width: 960px;
    width: 100%;
}

.report-table th,
.report-table td {
    border: 1px solid #dfe6f2;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.report-table thead th {
    background: #eaf1fb;
    color: #2d3c57;
    font-weight: 700;
}

.report-table tbody th {
    text-align: left;
    background: #f4f8fe;
    font-weight: 600;
}

.report-spacer td {
    height: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
}

.report-table thead .sticky-col {
    z-index: 3;
}

.empty {
    padding: 16px;
    border: 1px dashed #cad6ea;
    border-radius: 10px;
    background: #ffffff;
}
