* {
    box-sizing: border-box;
}

body.vtlcolor {
    margin: 0;
    min-height: 100vh;
    background: #f3f5f8;
    color: #11143a;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
}

body.vtlcolor a {
    color: inherit;
    text-decoration: none;
}

button,
.btn,
.nav-button,
.primary-button,
.submit-btn,
.dashboard-link {
    border-radius: 999px;
    transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

button:active,
.btn:active,
.nav-button:active,
.primary-button:active,
.submit-btn:active,
.dashboard-link:active {
    transform: translateY(1px);
}

.top-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background: linear-gradient(90deg, rgba(17, 20, 58, 1) 0%, rgba(240, 90, 38, 1) 100%);
    border-top: 1px solid #b4313d;
    border-bottom: 1px solid #b4313d;
}

.erp-head-bg {
    background: linear-gradient(90deg, rgba(180, 49, 61, 0) 10%, rgba(240, 90, 38, 1) 100%);
    border-bottom: 1px solid #b4313d;
    border-top: 1px solid #b4313d;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    background: transparent;
    min-height: 38px;
    padding: 0;
}

.navbar-brand img {
    max-height: 42px;
    object-fit: contain;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 118px;
    height: 52px;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-button,
.primary-button {
    display: inline-block;
    border: 1px solid transparent;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 20, 58, 0.16);
}

.nav-button.warning {
    background: #ffc107;
}

.nav-button.danger {
    background: #dc3545;
}

.page-shell {
    width: min(960px, calc(100% - 32px));
    margin: 42px auto;
    flex: 1 0 auto;
}

.audited-page-shell {
    width: min(1260px, calc(100% - 32px));
}

.dashboard-page-shell {
    width: min(1180px, calc(100% - 32px));
}

.dashboard-card {
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid rgba(17, 20, 58, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(17, 20, 58, 0.12);
    overflow: hidden;
}

.login-page {
    padding: 46px 16px 58px;
}

.login-shell {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
    border: 1px solid rgba(17, 20, 58, 0.22);
    box-shadow: 0 22px 54px rgba(17, 20, 58, 0.16);
}

.info-pane {
    background: linear-gradient(135deg, rgba(17, 20, 58, 1) 0%, rgba(240, 90, 38, 1) 100%);
    color: #fff;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 430px;
}

.audit-info-pane {
    background: linear-gradient(135deg, rgba(17, 20, 58, 1) 0%, rgba(240, 90, 38, 1) 100%);
}

.pill {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.info-pane h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 800;
}

.info-pane p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.65;
}

.form-pane {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-pane h2 {
    color: #11143a;
    font-size: 31px;
    margin-bottom: 24px;
    font-weight: 800;
}

.form-pane form {
    display: grid;
    gap: 20px;
}

.form-pane label {
    display: block;
    color: #11143a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
}

.form-pane input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #cfdbe8;
    background: #f8fbfe;
    color: #061326;
    padding: 0 16px;
    font-size: 15px;
    outline: 2px solid transparent;
    transition: border-color 160ms ease, outline-color 160ms ease, background 160ms ease;
}

.password-wrap input {
    padding-right: 54px;
}

.form-pane input:focus {
    background: #fff;
    border-color: #f05a26;
    outline-color: rgba(240, 90, 38, 0.16);
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    color: #11143a;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
}

.password-toggle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.password-toggle.is-visible {
    color: #f05a26;
}

.submit-btn {
    width: 100%;
    min-height: 56px;
    border: 0;
    background: linear-gradient(90deg, rgba(17, 20, 58, 1) 0%, rgba(240, 90, 38, 1) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(143, 47, 46, 0.28);
}

.submit-btn:hover,
.submit-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(143, 47, 46, 0.34);
}

.dashboard-wide {
    max-width: 920px;
}

.dashboard-page-shell .dashboard-wide {
    max-width: 1180px;
}

.audited-page-shell .dashboard-wide {
    max-width: 1260px;
}

.card-title {
    margin: 0;
    padding: 12px 16px;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, rgba(17, 20, 58, 1) 0%, rgba(240, 90, 38, 1) 100%);
}

.card-body {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-row input {
    width: 100%;
    min-height: 38px;
    border: 1px solid #198754;
    padding: 8px 10px;
    font: inherit;
}

.alert {
    margin-bottom: 18px;
    border: 1px solid #f5c2c7;
    background: #f8d7da;
    color: #842029;
    padding: 10px 12px;
    transition: opacity 220ms ease, transform 220ms ease, margin 220ms ease, padding 220ms ease;
}

.alert.success {
    border-color: #badbcc;
    background: #d1e7dd;
    color: #0f5132;
}

.alert.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
}

.primary-button {
    background: #fff;
    border-color: #198754;
    color: #198754;
    box-shadow: 0 8px 18px rgba(25, 135, 84, 0.14);
}

.primary-button:hover {
    background: #198754;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 13px 24px rgba(25, 135, 84, 0.22);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0 24px;
}

.stat-card {
    display: block;
    min-height: 120px;
    padding: 20px;
    border: 1px solid rgba(17, 20, 58, 0.08);
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 10px 22px rgba(17, 20, 58, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stat-card-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: #3b82f6;
}

.stat-card:nth-child(2) {
    background: #f3fff8;
}

.stat-card:nth-child(2)::before {
    background: #10b981;
}

.stat-card:nth-child(3) {
    background: #fff8ed;
}

.stat-card:nth-child(3)::before {
    background: #f97316;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(17, 20, 58, 0.16);
    box-shadow: 0 18px 34px rgba(17, 20, 58, 0.16);
}

.stat-card-link:hover,
.stat-card-link:focus {
    color: inherit;
    text-decoration: none;
}

.stat-card span {
    display: block;
    color: #5a6078;
    font-weight: 700;
}

.stat-card strong {
    display: block;
    margin-top: 16px;
    color: #11143a;
    font-size: 38px;
    line-height: 1;
}

.stat-card em {
    display: inline-block;
    margin-top: 14px;
    color: #087f5b;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.list-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.list-header h2,
.detail-heading h2 {
    margin: 0;
    color: #11143a;
    font-size: 24px;
    font-weight: 800;
}

.list-summary {
    margin: 6px 0 0;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.table-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #4b5565;
    font-size: 13px;
    font-weight: 800;
}

.table-controls select {
    min-width: 92px;
    border: 1px solid #d4deec;
    border-radius: 8px;
    padding: 7px 10px;
    background: #fff;
    color: #11143a;
    font: inherit;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

.detail-table,
.photo-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.audited-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
    border: 1px solid #dde6f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 20, 58, 0.08);
}

.detail-table th,
.detail-table td,
.photo-table th,
.photo-table td {
    border: 1px solid #d9e1ec;
    padding: 10px;
    vertical-align: top;
}

.detail-table th,
.photo-table th {
    background: #f2f6fb;
    color: #11143a;
    font-size: 13px;
}

.audited-table th,
.audited-table td {
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid #e7edf5;
    color: #26324a;
    font-size: 13px;
    line-height: 1.3;
    vertical-align: middle;
}

.audited-table th {
    padding-top: 11px;
    padding-bottom: 11px;
    background: #f7f9fc;
    color: #5b6478;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.audited-table tbody tr {
    transition: background 150ms ease, box-shadow 150ms ease;
}

.audited-table tbody tr:nth-child(even) {
    background: #fbfcfe;
}

.audited-table tbody tr:hover {
    background: #f4f8ff;
    box-shadow: inset 3px 0 0 #0b63ce;
}

.audited-table tbody tr:last-child td {
    border-bottom: 0;
}

.audited-table th:first-child,
.audited-table td:first-child {
    width: 6%;
    text-align: center;
}

.audited-table th:nth-child(2),
.audited-table td:nth-child(2) {
    width: 30%;
}

.audited-table th:nth-child(3),
.audited-table td:nth-child(3) {
    width: 16%;
}

.audited-table th:nth-child(4),
.audited-table td:nth-child(4) {
    width: 13%;
}

.audited-table th:nth-child(5),
.audited-table td:nth-child(5) {
    width: 15%;
}

.audited-table th:nth-child(6),
.audited-table td:nth-child(6),
.audited-table th:nth-child(7),
.audited-table td:nth-child(7) {
    width: 11%;
    text-align: center;
}

.audited-table th:nth-child(8),
.audited-table td:nth-child(8) {
    width: 10%;
    text-align: center;
}

.centres-table {
    min-width: 1180px;
}

.centres-table th,
.centres-table td {
    width: auto !important;
    text-align: left !important;
}

.centres-table th:first-child,
.centres-table td:first-child,
.centres-table th:nth-child(2),
.centres-table td:nth-child(2) {
    width: 70px !important;
    text-align: center !important;
}

.pagination-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #4b5565;
    font-size: 13px;
    font-weight: 800;
}

.pagination-bar a,
.pagination-bar span {
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid #d4deec;
    border-radius: 999px;
    background: #fff;
    color: #0b63ce;
    text-decoration: none;
}

.pagination-bar span {
    color: #4b5565;
}

.pagination-bar .is-disabled {
    color: #98a2b3;
    background: #f6f8fb;
}

.rating-ui {
    display: inline-flex;
    gap: 3px;
    vertical-align: middle;
}

.rating-ui span {
    display: inline-grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border: 1px solid #d8e0ec;
    border-radius: 50%;
    background: #fff;
    color: #667085;
    font-size: 11px;
    font-weight: 800;
}

.rating-ui span:first-child {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.rating-ui span:last-child {
    border-color: #fecaca;
    background: #fff1f2;
    color: #991b1b;
}

.status-pill {
    display: inline-flex;
    justify-content: center;
    min-width: 76px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.status-pill.is-approved {
    background: #dcfce7;
    color: #14532d;
}

.status-pill.is-rejected {
    background: #fee2e2;
    color: #7f1d1d;
}

.table-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid #b8d5ff;
    border-radius: 999px;
    background: #f4f8ff;
    color: #0b63ce;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: none;
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.table-action-button:hover,
.table-action-button:focus {
    border-color: #0b63ce;
    background: #0b63ce;
    color: #fff;
    transform: translateY(-1px);
}

.detail-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.detail-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.detail-grid {
    display: grid;
    gap: 18px;
}

.detail-section {
    border: 1px solid rgba(17, 20, 58, 0.08);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.detail-section h3 {
    margin: 0;
    padding: 12px 14px;
    background: #f2f6fb;
    color: #11143a;
    font-size: 16px;
    font-weight: 800;
}

.photo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 14px 0;
}

.photo-tab-button {
    border: 1px solid #0b63ce;
    background: #fff;
    color: #0b63ce;
    padding: 8px 12px;
    font-weight: 800;
    cursor: pointer;
}

.photo-tab-button.is-active {
    background: #0b63ce;
    color: #fff;
}

.photo-panel {
    display: none;
    padding: 14px;
}

.photo-panel.is-active {
    display: block;
}

.photo-thumb {
    width: 130px;
    max-height: 96px;
    object-fit: cover;
    border: 1px solid #d9e1ec;
    border-radius: 6px;
    background: #f8fbff;
}

.empty-state {
    margin: 0;
    padding: 18px;
    color: #5a6078;
    font-weight: 700;
}

.filled-audit-form {
    width: min(100%, 210mm);
    margin: 0 auto;
    padding: 0 13mm 12mm;
    background: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.25;
    border: 1px solid #d9e1ec;
}

.filled-form-letterhead {
    height: 21mm;
    margin: 0 -13mm 9mm;
    overflow: hidden;
    background: #fff;
}

.filled-form-letterhead img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.filled-audit-form h1 {
    margin: 0 0 8mm;
    text-align: center;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 700;
}

.filled-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22mm;
    margin-bottom: 8mm;
    font-weight: 700;
}

.filled-top-row span,
.filled-section-title span {
    display: inline-block;
    min-width: 38mm;
    padding: 2px 6px;
    border-bottom: 1px dotted #000;
    font-weight: 400;
}

.filled-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.filled-info-table th,
.filled-info-table td {
    border: 1px solid #000;
    padding: 4px 5px;
    vertical-align: middle;
    color: #000;
}

.filled-info-table th {
    background: #fff200;
    text-align: center;
    font-weight: 700;
}

.filled-info-table td:first-child {
    width: 38%;
    font-weight: 700;
}

.filled-section-title {
    margin: 8px 0;
    text-align: center;
    font-weight: 700;
}

.filled-parameter-table td:last-child {
    text-align: center;
    font-weight: 700;
}

.filled-parameter-table td:nth-child(1),
.filled-parameter-table td:nth-child(3) {
    width: 38%;
    font-weight: 700;
}

.filled-parameter-table td:nth-child(2),
.filled-parameter-table td:nth-child(4) {
    width: 12%;
    text-align: center;
    font-weight: 700;
}

.filled-center {
    text-align: center;
}

.filled-infra-table {
    margin-top: 7px;
    font-size: 10px;
}

.filled-infra-table th,
.filled-infra-table td {
    text-align: center;
}

.filled-infra-table td:first-child {
    width: auto;
    font-weight: 400;
}

.filled-recommendation-table {
    margin-top: 7px;
}

.filled-recommendation-table,
.filled-recommendation-table td {
    border: 0;
}

.filled-recommendation-table td {
    vertical-align: top;
}

.filled-recommendation-table .recommendation-label {
    width: 38%;
}

.filled-textbox {
    min-height: 74px;
    border: 1px solid #777;
    padding: 8px;
    background: #fff;
    font-weight: 400;
    white-space: pre-wrap;
}

.filled-document-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
}

.filled-document-box {
    min-height: 112px;
    border: 0;
    padding: 8px;
    display: grid;
    align-content: start;
    gap: 8px;
}

.filled-document-box strong {
    display: block;
}

.signature-preview {
    max-width: 220px;
    max-height: 82px;
    object-fit: contain;
}

.document-preview-link,
.document-preview-button {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border: 0;
    background: transparent;
    color: #0b63ce;
    padding: 0;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.document-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.pdf-icon {
    background: #dc2626;
}

.image-icon {
    background: #0b63ce;
}

.file-icon {
    background: #5a6078;
}

.filled-audit-form h3 {
    margin: 14px 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.photo-tabs-single {
    padding: 0;
    justify-content: center;
}

.filled-photo-section {
    display: grid;
    gap: 12px;
}

.filled-photo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.filled-photo-cell {
    min-width: 0;
    display: grid;
    gap: 5px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
}

.photo-preview-button,
.photo-placeholder {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    border: 1px solid #777;
    border-radius: 4px;
    background: #f8fbff;
}

.photo-preview-button {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.photo-preview-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-placeholder {
    display: grid;
    place-items: center;
    color: #5a6078;
    font-size: 10px;
}

.photo-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 20, 58, 0.62);
}

.photo-preview-modal.is-open {
    display: flex;
}

.photo-preview-panel {
    width: min(920px, 96vw);
    max-height: 92vh;
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.photo-preview-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #d9e1ec;
}

.photo-preview-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.photo-preview-close {
    border: 1px solid #0b63ce;
    background: #0b63ce;
    color: #fff;
    padding: 8px 14px;
    font-weight: 800;
    cursor: pointer;
}

.photo-preview-panel img {
    width: 100%;
    max-height: calc(92vh - 70px);
    object-fit: contain;
    display: block;
    background: #11143a;
}

.admin-review-panel {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #d9e1ec;
}

.review-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(17, 20, 58, 0.16);
}

.approve-button {
    background: #15803d;
}

.reject-button {
    background: #dc2626;
}

.neutral-button {
    background: #5a6078;
}

.review-status {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.review-status.is-approved {
    background: #dcfce7;
    color: #14532d;
}

.review-status.is-rejected {
    background: #fee2e2;
    color: #7f1d1d;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 20, 58, 0.62);
}

.review-modal.is-open {
    display: flex;
}

.review-panel {
    width: min(520px, 96vw);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.review-panel h2 {
    margin: 0 0 16px;
    color: #11143a;
    font-size: 22px;
    font-weight: 800;
}

.review-panel label {
    display: block;
    margin-bottom: 8px;
    color: #11143a;
    font-weight: 800;
}

.review-panel textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #cfdbe8;
    padding: 10px;
    font: inherit;
    resize: vertical;
}

.review-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.dashboard-actions {
    text-align: center;
}

.dashboard-link {
    display: inline-block;
    margin: 5px;
    min-width: 190px;
    padding: 15px 26px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 12px 24px rgba(17, 20, 58, 0.18);
}

.dashboard-link:hover,
.dashboard-link:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(17, 20, 58, 0.24);
}

.dashboard-link.fill-report {
    background: linear-gradient(135deg, #0f9f75 0%, #087f5b 100%);
    border-color: rgba(6, 101, 72, 0.7);
}

.dashboard-link.audit-report {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    border-color: rgba(154, 52, 18, 0.7);
}

.main-footer {
    margin-top: auto;
    padding: 13px 24px;
    color: #fff;
    font-size: 14px;
    background: linear-gradient(90deg, rgba(17, 20, 58, 1) 20%, rgba(240, 90, 38, 1) 100%);
    flex-shrink: 0;
}

.main-footer a {
    color: #fff;
}

.float-right {
    float: right;
}

.main-footer span {
    float: right;
}

@media (max-width: 640px) {
    .top-nav,
    .form-row {
        display: block;
    }

    .form-row input {
        margin-top: 6px;
    }

    .nav-actions {
        margin-top: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .login-shell {
        grid-template-columns: 1fr;
    }

    .form-pane,
    .info-pane {
        padding: 30px;
    }
}
