@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --bg-body: #f4f6fb;
    --bg-sidebar: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fd;
    --bg-input: #f4f6fb;
    --accent: #4f6ef7;
    --accent-hover: #3b57d9;
    --accent-light: rgba(79, 110, 247, .08);
    --green: #16a34a;
    --green-light: rgba(22, 163, 74, .08);
    --red: #dc2626;
    --red-light: rgba(220, 38, 38, .08);
    --orange: #ea580c;
    --orange-light: rgba(234, 88, 12, .08);
    --yellow: #ca8a04;
    --yellow-light: rgba(202, 138, 4, .08);
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow: 0 2px 12px rgba(0, 0, 0, .06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .08);
    --radius: 12px;
    --sidebar-w: 250px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg-body);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    z-index: 1040;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 22px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand i {
    font-size: 1.3rem;
}

.sidebar-nav {
    padding: 14px 10px;
    flex: 1;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: .88rem;
    font-weight: 500;
    transition: all .15s;
    margin-bottom: 2px;
}

.sidebar-nav .nav-link:hover {
    background: var(--bg-body);
    color: var(--text);
}

.sidebar-nav .nav-link.active {
    background: var(--accent);
    color: #fff;
}

.sidebar-nav .nav-link i {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

.sidebar-footer button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 0;
    font-size: .85rem;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.sidebar-footer button:hover {
    color: var(--red);
}

.main-content {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    transition: margin .25s ease;
}

.topbar {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-sidebar);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: .85rem;
}

.topbar-user .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
}

.btn-toggle-sidebar {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 2px 6px;
}

.page-content {
    padding: 24px;
}

.card-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all .15s;
}

.card-stat:hover {
    box-shadow: var(--shadow);
}

.card-stat .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.card-stat .stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-stat .stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-red .stat-icon {
    background: var(--red-light);
    color: var(--red);
}

.stat-red .stat-value {
    color: var(--red);
}

.stat-green .stat-icon {
    background: var(--green-light);
    color: var(--green);
}

.stat-green .stat-value {
    color: var(--green);
}

.stat-orange .stat-icon {
    background: var(--orange-light);
    color: var(--orange);
}

.stat-orange .stat-value {
    color: var(--orange);
}

.panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.panel-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.table-fin {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
}

.table-fin thead th {
    padding: 10px 12px;
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 1px solid var(--border);
}

.table-fin tbody td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.table-fin tbody tr:hover {
    background: var(--bg-card-hover);
}

.table-fin .vencida {
    background: var(--red-light) !important;
}

.badge-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 600;
    display: inline-block;
}

.badge-aberta {
    background: var(--orange-light);
    color: var(--orange);
}

.badge-liquidada {
    background: var(--green-light);
    color: var(--green);
}

.badge-vencida {
    background: var(--red-light);
    color: var(--red);
}

.badge-mensal {
    background: var(--accent-light);
    color: var(--accent);
}

.badge-anual {
    background: rgba(139, 92, 246, .08);
    color: #7c3aed;
}

.badge-avulsa {
    background: rgba(100, 116, 139, .08);
    color: var(--text-secondary);
}

.btn-fin {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: .84rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

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

.btn-primary-fin {
    background: var(--accent);
    color: #fff;
}

.btn-primary-fin:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-success-fin {
    background: var(--green);
    color: #fff;
}

.btn-success-fin:hover {
    background: #15803d;
    color: #fff;
}

.btn-danger-fin {
    background: var(--red);
    color: #fff;
}

.btn-danger-fin:hover {
    background: #b91c1c;
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-body);
    color: var(--text);
}

.btn-sm-fin {
    padding: 5px 10px;
    font-size: .78rem;
    border-radius: 8px;
}

.btn-icon-add {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px dashed var(--border);
    background: transparent;
    color: var(--accent);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}

.btn-icon-add:hover {
    background: var(--accent);
    color: #fff;
    border-style: solid;
    border-color: var(--accent);
}

.form-control-fin,
.form-select-fin {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: .86rem;
    width: 100%;
    transition: border-color .15s;
    font-family: inherit;
}

.form-control-fin:focus,
.form-select-fin:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 110, 247, .1);
}

.form-control-fin::placeholder {
    color: var(--text-muted);
}

.form-label-fin {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: block;
}

select.form-select-fin {
    appearance: auto;
}

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

.modal-header {
    border-bottom: 1px solid var(--border) !important;
    padding: 18px 22px;
}

.modal-body {
    padding: 20px 22px;
}

.modal-footer {
    border-top: 1px solid var(--border) !important;
    padding: 14px 22px;
}

.modal-title {
    font-weight: 600;
    font-size: 1rem;
}

.autocomplete-list {
    position: absolute;
    z-index: 1060;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.autocomplete-item {
    padding: 9px 12px;
    cursor: pointer;
    font-size: .86rem;
    transition: background .1s;
}

.autocomplete-item:hover {
    background: var(--bg-body);
}

.overlay-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1035;
}

.alert-fin {
    border-radius: 10px;
    padding: 11px 16px;
    font-size: .86rem;
    margin-bottom: 18px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success-fin {
    background: var(--green-light);
    color: var(--green);
}

.alert-danger-fin {
    background: var(--red-light);
    color: var(--red);
}

.pagination .page-link {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
    border-radius: 8px !important;
    margin: 0 2px;
    font-size: .8rem;
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.resumo-fatura {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 18px;
}

.resumo-fatura .rf-title {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.resumo-fatura .item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: .86rem;
}

.resumo-fatura .item .label {
    color: var(--text-muted);
}

.resumo-fatura .item .value {
    font-weight: 600;
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: end;
    margin-bottom: 20px;
}

.filter-bar .filter-group {
    min-width: 120px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.search-bar {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 180px;
}

.search-bar .form-control-fin {
    max-width: 280px;
}

.modal-fin-clean {
    overflow: hidden;
}

.modal-fin-header {
    background: #fff;
}

.modal-fin-subtitle {
    font-size: .84rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.modal-fin-body {
    background: #fff;
}

.modal-fin-footer {
    background: #fff;
}

.modal-section-fin {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.modal-section-title-fin {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.file-preview-stack {
    min-height: 0;
    margin-bottom: 12px;
}

.file-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 12px 14px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.file-chip .fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.file-chip .fc-icon.pdf {
    background: var(--red-light);
    color: var(--red);
}

.file-chip .fc-icon.img {
    background: var(--accent-light);
    color: var(--accent);
}

.file-chip .fc-icon.doc {
    background: rgba(100, 116, 139, .10);
    color: var(--text-secondary);
}

.file-chip .fc-info {
    flex: 1;
    min-width: 0;
}

.file-chip .fc-label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.file-chip .fc-hint {
    font-size: .74rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.file-chip .fc-btn {
    padding: 7px 12px;
    border-radius: 9px;
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--accent);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.file-chip .fc-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.detail-list-fin {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 16px;
}

.detail-row-fin {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.detail-row-fin-last {
    border-bottom: 0;
}

.detail-row-highlight-fin .detail-value-fin,
.detail-value-fin.detail-highlight-fin {
    color: var(--green);
}

.detail-value-fin.detail-highlight-blue-fin {
    color: var(--accent);
}

.detail-value-fin.detail-highlight-orange-fin {
    color: var(--orange);
}

.liq-status-badge-fin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

.liq-status-badge-fin.atraso {
    background: var(--orange-light);
    color: var(--orange);
}

.detail-label-fin {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.detail-value-fin {
    font-size: .92rem;
    color: var(--text);
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.liq-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.liq-card-header {
    padding: 12px 16px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.liq-card-body {
    padding: 14px 16px;
}

.liq-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.liq-row+.liq-row {
    border-top: 1px solid var(--border);
}

.liq-row .lr-label {
    font-size: .84rem;
    color: var(--text-muted);
}

.liq-row .lr-value {
    font-size: .84rem;
    font-weight: 600;
    text-align: right;
}

.liq-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.liq-file-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all .15s;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.liq-file-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.liq-file-card .lfc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.liq-file-card .lfc-icon.pdf {
    background: var(--red-light);
    color: var(--red);
}

.liq-file-card .lfc-icon.img {
    background: var(--accent-light);
    color: var(--accent);
}

.liq-file-card .lfc-icon.doc {
    background: rgba(100, 116, 139, .10);
    color: var(--text-secondary);
}

.liq-file-card .lfc-label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
}

.liq-file-card .lfc-action {
    font-size: .75rem;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.empty-files-fin {
    width: 100%;
    padding: 16px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    background: var(--bg-body);
    color: var(--text-muted);
    font-size: .84rem;
    text-align: center;
}

.file-upload-inline-fin {
    display: flex;
    gap: 10px;
    align-items: center;
}

.file-upload-inline-fin .form-control-fin {
    flex: 1;
}

.liq-separator {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.mobile-cards {
    display: none;
}

.toast-container .toast {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    color: var(--text) !important;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    padding: 20px;
}

.auth-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.auth-box h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.auth-box .subtitle {
    color: var(--text-muted);
    font-size: .86rem;
    text-align: center;
    margin-bottom: 24px;
}

.auth-box .form-group {
    margin-bottom: 16px;
}

.auth-box .btn-fin {
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: .92rem;
}

.auth-box .auth-footer {
    text-align: center;
    margin-top: 18px;
    font-size: .84rem;
    color: var(--text-muted);
}

.file-item {
    display: none;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .overlay-sidebar.show {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .btn-toggle-sidebar {
        display: block;
    }

    .page-content {
        padding: 14px;
    }

    .topbar {
        padding: 10px 14px;
    }

    .desktop-table {
        display: none !important;
    }

    .mobile-cards {
        display: block !important;
    }

    .filter-bar .filter-group {
        min-width: 100%;
    }

    .page-header {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 14px;
        margin-bottom: 10px;
        box-shadow: var(--shadow-sm);
    }

    .mobile-card.vencida {
        border-left: 3px solid var(--red);
    }

    .mobile-card .mc-header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 8px;
    }

    .mobile-card .mc-title {
        font-weight: 600;
        font-size: .9rem;
    }

    .mobile-card .mc-info {
        font-size: .8rem;
        color: var(--text-muted);
        margin-bottom: 3px;
    }

    .mobile-card .mc-valor {
        font-size: 1.05rem;
        font-weight: 700;
    }

    .mobile-card .mc-actions {
        display: flex;
        gap: 6px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .mobile-card .mc-actions .btn-fin {
        flex: 1;
        justify-content: center;
        min-width: 70px;
    }

    .detail-row-fin {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .detail-value-fin {
        text-align: left;
    }

    .file-upload-inline-fin {
        flex-direction: column;
        align-items: stretch;
    }

    .liq-files-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Toast feedback styles ── */
.toast-success {
    background: #16a34a !important;
    color: #fff !important;
    border: none !important;
}

.toast-error {
    background: #dc2626 !important;
    color: #fff !important;
    border: none !important;
}

.toast-success .bi,
.toast-error .bi {
    color: #fff !important;
}

/* ──────────────────────────────────────────────────── */
/* ── Inline Editing (global)                      ── */
/* ──────────────────────────────────────────────────── */

.inline-editable {
    cursor: pointer;
    border-bottom: 1px dashed transparent;
    padding-bottom: 1px;
    transition: all .15s;
}

.inline-editable:hover {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

.inline-editable.editing {
    border-bottom: none;
    padding-bottom: 0;
}

.inline-input {
    padding: 3px 8px !important;
    font-size: .84rem !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 6px !important;
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(79, 110, 247, .12) !important;
}

.inline-input:focus {
    outline: none;
}

.inline-ac-wrapper {
    position: relative;
    display: block;
}

.inline-ac-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    max-height: 220px;
    overflow-y: auto;
    z-index: 1055;
    margin-top: 2px;
    min-width: 180px;
}

.inline-ac-list .ac-item {
    padding: 7px 10px;
    font-size: .82rem;
    cursor: pointer;
}

.inline-ac-list .ac-item:hover,
.inline-ac-list .ac-item.active {
    background: var(--accent-light);
    color: var(--accent);
}

.detail-highlight-blue-fin {
    color: var(--accent);
}

.detail-highlight-orange-fin {
    color: var(--orange);
}

.liq-status-badge-fin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

.liq-status-badge-fin.atraso {
    background: var(--orange-light);
    color: var(--orange);
}