:root {
    --brand: #E44049;
    --brand-hover: #FF333D;
    --brand-rgb: 228, 64, 73;
    --ink: #1F2328;
    --ink-soft: #434649;
    --muted: #6B7280;
    --line: #E5E7EB;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--ink);
}

.container {
    max-width: 72rem;
    width: 100%;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

[class*="col-"] {
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 calc(25% - 0.75rem);
        max-width: calc(25% - 0.75rem);
    }

    .col-md-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.d-none {
    display: none !important;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.55);
    z-index: 50;
}

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

.modal-dialog {
    width: 100%;
    max-width: 840px;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
}

.modal-xl {
    max-width: 980px;
}

.modal-content {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px -30px rgba(15, 23, 42, 0.4);
    overflow: hidden;
}

.modal-header,
.modal-footer {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.modal-footer {
    border-top: 1px solid var(--line);
    border-bottom: none;
    justify-content: flex-end;
}

.modal-body {
    padding: 1.25rem 1.5rem;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-white {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--line);
}

.btn-white:hover {
    background: #1F2328;
    color: #ffffff;
    border-color: #1F2328;
}

.btn-primary {
    background: var(--brand);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--brand-hover);
    color: #ffffff;
}

.form-group {
    margin-bottom: 1rem;
}

.h-captcha {
    min-height: 78px;
    display: block;
}

.h-captcha iframe {
    max-width: 100%;
}

.progress {
    width: 100%;
    height: 10px;
    background: #E5E7EB;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--brand);
    transition: width 0.2s ease;
}

.modal-open {
    overflow: hidden;
}

.footer-entity-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.footer-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--brand) !important;
    flex: 0 0 auto;
    margin-top: 2px;
}

.footer-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.entity-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.header-title {
    text-align: right;
}

.header-title p {
    font-size: calc(1em + 2px);
}

@media (max-width: 640px) {
    .entity-logo {
        max-width: 210px;
    }
}

@media (max-width: 640px) and (orientation: portrait) {
    .header-logo {
        display: none;
    }

    .header-logo-wrap {
        display: none;
    }

    .header-row {
        justify-content: center;
        text-align: center;
    }

    .header-title {
        text-align: center;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 50;
    border-radius: 999px;
}

.skip-link:focus {
    left: 1.5rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.9rem;
    background: var(--brand);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-btn {
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-glow {
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.1), transparent 60%);
}

.step-icon {
    background: rgba(var(--brand-rgb), 0.12);
}

.hero-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.hero-btn-primary {
    background-color: var(--brand);
    color: #ffffff;
    box-shadow: 0 18px 40px -32px rgba(31, 35, 40, 0.35);
}

.hero-btn-primary:hover {
    background-color: var(--brand-hover);
    color: #ffffff;
}

.hero-btn-secondary {
    background-color: #1F2328;
    color: #ffffff;
    border: 1px solid #1F2328;
    box-shadow: 0 18px 40px -32px rgba(31, 35, 40, 0.35);
}

.hero-btn-secondary:hover {
    background-color: #434649;
    color: #ffffff;
    border-color: #434649;
}

.footer-link {
    color: var(--ink-soft);
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--brand);
}

.footer-link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.footer-link:hover span {
    transform: translateX(2px);
}

.access-toolbar {
    background: #F8FAFC;
    border-bottom: 1px solid var(--line);
}

.access-title {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.access-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    justify-content: space-between;
}

.access-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.access-btn {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.access-btn:hover {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
}

.access-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.access-btn.is-active {
    background: var(--ink);
    color: #ffffff;
    border-color: var(--ink);
}

.footer-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    height: 100%;
}

@media (min-width: 768px) {
    .footer-card {
        padding: 1.25rem 1.5rem;
    }
}

body.high-contrast {
    background-color: #000000;
    color: #ffffff;
}

body.high-contrast .bg-white {
    background-color: #000000 !important;
}

body.high-contrast .text-ink,
body.high-contrast .text-inkSoft {
    color: #ffffff !important;
}

body.high-contrast .text-muted {
    color: #E5E7EB !important;
}

body.high-contrast .border-line {
    border-color: #ffffff !important;
}

body.high-contrast .hero-btn-primary {
    background-color: #FFD60A;
    color: #111111;
}

body.high-contrast .hero-btn-secondary {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

body.high-contrast .footer-link {
    color: #ffffff;
}

body.high-contrast .footer-link:hover {
    color: #FFD60A;
}

body.high-contrast .footer-card {
    background: #000000;
    border-color: #ffffff;
}

body.high-contrast .access-toolbar {
    background: #000000;
    border-color: #ffffff;
}


body.high-contrast .access-btn {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

body.high-contrast .access-btn:hover {
    background: #FFD60A;
    color: #111111;
    border-color: #FFD60A;
}

body.high-contrast .footer-surface {
    background-color: #000000 !important;
}

body.high-contrast .hero-glow {
    opacity: 0;
}

.access-toolbar .max-w-6xl {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.main-content {
    background: #ffffff;
    padding: 3rem 0 4rem;
}

.main-content .content {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 18px 40px -32px rgba(31, 35, 40, 0.28);
}

@media (max-width: 768px) {
    .main-content {
        padding: 2.25rem 0 2.75rem;
    }

    .main-content .content {
        padding: 1.25rem;
    }
}

.accordion-area h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.accordion-area p {
    color: var(--muted);
    line-height: 1.6;
}

.multistep-form-area,
.verificer-form-area {
    margin-top: 1.5rem;
}

.form-card {
    background: #F8FAFC;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.form-content {
    margin-top: 1rem;
}

.form-content p {
    margin: 0 0 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.form-content p:last-child {
    margin-bottom: 0;
}

.survey-card {
    background: #F8FAFC;
}

.survey-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.survey-question {
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    background: #ffffff;
    margin: 0;
    min-width: 0;
}

.survey-question__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0;
}

.survey-question__index {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(var(--brand-rgb), 0.1);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.survey-question__title {
    line-height: 1.4;
}

.survey-options {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.survey-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    padding: 0.55rem 0.75rem;
    background: #ffffff;
    cursor: pointer;
    font-size: 0.8625rem;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.survey-option__input {
    margin: 0;
    accent-color: var(--brand);
}

.survey-option__label {
    font-weight: 500;
}

.survey-option:hover {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.08);
}

.survey-option__input:focus-visible {
    outline: 2px solid rgba(var(--brand-rgb), 0.3);
    outline-offset: 2px;
}

.survey-option__input:checked + .survey-option__label {
    color: var(--brand);
    font-weight: 600;
}

.form-help {
    margin-top: 0.45rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.survey-errors {
    margin-top: 0.75rem;
}

.stepper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stepper-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.stepper-progress li {
    flex: 1 1 140px;
    padding: 0.6rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted);
    background: #ffffff;
    text-align: center;
}

.stepper-progress li.is-active {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.08);
}

.stepper-progress li.is-complete {
    border-color: rgba(34, 197, 94, 0.35);
    color: #15803d;
    background: rgba(34, 197, 94, 0.1);
}

.form-step {
    display: none;
    animation: stepFade 0.2s ease;
}

.form-step.is-active {
    display: block;
}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stepper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.stepper-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    font-size: 0.8625rem;
    text-decoration: none;
    border: 1px solid transparent;
    background: var(--brand);
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stepper-actions .button:hover {
    background: var(--brand-hover);
    color: #ffffff;
}

.stepper-actions .action-button {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--line);
}

.stepper-actions .action-button:hover {
    background: #1F2328;
    color: #ffffff;
    border-color: #1F2328;
}

.heading h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
}

.input-field,
.select-field,
.textarea-field,
.policy-content {
    margin-bottom: 1rem;
}

.registration-label,
.input-field label,
.select-field label,
.textarea-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
}

.registration-input,
.input-field input,
.input-field textarea,
.select-item select,
.textarea-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    padding: 0.55rem 0.85rem;
    background: #ffffff;
    color: var(--ink);
    font-size: 0.9125rem;
}

.registration-textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.5;
}

.form-control,
.form-select,
select.form-control,
textarea.form-control {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    padding: 0.55rem 0.85rem;
    background: #ffffff;
    color: var(--ink);
    font-size: 0.9125rem;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus,
textarea.form-control:focus {
    outline: 2px solid rgba(var(--brand-rgb), 0.2);
    border-color: var(--brand);
    box-shadow: none;
}

.registration-input:focus,
.input-field input:focus,
.input-field textarea:focus,
.select-item select:focus,
.textarea-field textarea:focus {
    outline: 2px solid rgba(var(--brand-rgb), 0.2);
    border-color: var(--brand);
    box-shadow: none;
}

.has-error .registration-input,
.has-error .input-field input,
.has-error .input-field textarea,
.has-error .select-item select,
.has-error .textarea-field textarea,
.has-error .form-control,
.has-error .form-select,
.has-error textarea.form-control,
.has-error select.form-control {
    border-color: #E11D48;
    box-shadow: none;
}

label.error {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    color: #E11D48;
    font-weight: 600;
}

.button-items,
.submit-button,
.incio-button {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.button-items .button,
.submit-button button,
.incio-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    font-size: 0.8625rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-items .button,
.submit-button button,
.button-items .registration-submit {
    background: var(--brand);
    color: #ffffff;
    border: none;
}

.button-items .button:hover,
.submit-button button:hover,
.button-items .registration-submit:hover {
    background: var(--brand-hover);
    color: #ffffff;
}

.button-items .action-button,
.submit-button .action-button,
.incio-button a {
    background: #ffffff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.button-items .action-button:hover,
.submit-button .action-button:hover,
.incio-button a:hover {
    background: #1F2328;
    color: #ffffff;
    border-color: #1F2328;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 600;
    font-size: 0.8625rem;
    text-decoration: none;
    background: #ffffff;
    color: var(--ink);
    border: 1px solid var(--line);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.action-button:hover {
    background: #1F2328;
    color: #ffffff;
    border-color: #1F2328;
}

.form-table-area table {
    width: 100%;
    border-collapse: collapse;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.form-table-area td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9125rem;
}

.table td,
.table th {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9125rem;
}

.table thead th {
    font-weight: 600;
    color: var(--ink);
}

.text-brand {
    color: var(--brand);
}

.confirm-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.confirm-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.confirm-subtitle {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.9125rem;
}

.form-table-area tr:last-child td {
    border-bottom: none;
}

body.high-contrast .main-content,
body.high-contrast .content,
body.high-contrast .form-card {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

body.high-contrast .registration-label,
body.high-contrast .accordion-area h2,
body.high-contrast .heading h3 {
    color: #ffffff;
}

body.high-contrast .registration-input,
body.high-contrast .input-field input,
body.high-contrast .input-field textarea,
body.high-contrast .select-item select,
body.high-contrast .textarea-field textarea {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

body.high-contrast .survey-question,
body.high-contrast .survey-option {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

body.high-contrast .survey-option__label {
    color: #ffffff;
}

body.high-contrast .survey-option__input:checked + .survey-option__label {
    color: #FFD60A;
}

body.high-contrast .form-table-area td {
    border-color: #ffffff;
}

.alert {
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--line);
    background: #F8FAFC;
    color: var(--ink);
    font-size: 0.85rem;
}

.alert-success {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.08);
}

.alert-warning {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.08);
}

.btn,
.button {
    font-family: inherit;
    border-radius: 999px;
    font-weight: 600;
}

body.high-contrast .table td,
body.high-contrast .table th {
    border-color: #ffffff;
    color: #ffffff;
}

body.high-contrast .alert {
    border-color: #ffffff;
    background: #000000;
    color: #ffffff;
}

body.high-contrast .stepper-progress li {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

body.high-contrast .stepper-progress li.is-active {
    background: #FFD60A;
    color: #111111;
    border-color: #FFD60A;
}

body.high-contrast .stepper-progress li.is-complete {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

body.high-contrast .progress-pekeupload-text {
    color: #ffffff;
}

/* SweetAlert2 theme */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
}

.swal2-styled.swal2-confirm {
    background-color: var(--brand) !important;
    border: 1px solid var(--brand) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 0.6rem 1.4rem !important;
    box-shadow: none !important;
}

.swal2-styled.swal2-confirm:hover {
    background-color: var(--brand-hover) !important;
    border-color: var(--brand-hover) !important;
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3) !important;
}

.swal2-styled.swal2-cancel {
    background-color: #ffffff !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 0.6rem 1.2rem !important;
    box-shadow: none !important;
}

.swal2-styled.swal2-cancel:hover {
    background-color: #1F2328 !important;
    color: #ffffff !important;
    border-color: #1F2328 !important;
}

/* PekeUpload overrides */
.progress-pekeupload {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #E5E7EB;
    border: 1px solid var(--line);
    margin: 0;
    position: relative;
}

.bar-pekeupload {
    height: 100%;
    display: block;
    background: var(--brand);
    min-width: 4px;
}

.progress-pekeupload-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink);
    min-width: 44px;
    text-align: right;
}

.pekeupload-btn-file,
.delbutton,
.pkdel {
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pekeupload-btn-file {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
    box-shadow: none;
    text-shadow: none;
}

.pekeupload-btn-file:hover,
.delbutton:hover,
.pkdel:hover {
    background: #1F2328;
    color: #ffffff;
    border-color: #1F2328;
}

.pekeupload-btn-file:hover {
    background: var(--brand-hover);
    border-color: var(--brand-hover);
}

.pkdel.btn-danger,
.pkdel.btn-sm {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--line);
}

.pkdel.btn-danger:hover {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
}

.pkdelfile {
    margin-top: 0;
    flex: 0 0 auto;
    align-self: center;
}

.pekerow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    overflow: visible;
    padding-left: 0;
}

.pekeitem_preview {
    float: none;
    width: auto;
    flex: 0 0 40px;
}

.pekerow .file {
    float: none;
    width: auto;
    flex: 1 1 220px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.35rem;
    align-items: center;
}

.pekerow .filename {
    font-size: 0.8rem;
    color: var(--ink);
    font-weight: 600;
    grid-column: 1 / -1;
}

.pekerow .progress-pekeupload {
    grid-column: 1 / 2;
}

.progress-pekeupload-text {
    grid-column: 2 / 3;
    align-self: center;
    margin-left: 0.5rem;
}

.input-item .pekeupload-btn-file {
    margin: 0;
}

.pekeupload-drag-area {
    padding: 1rem;
    border-radius: 0.85rem;
    border: 1px dashed var(--line);
    background: #ffffff;
}

/* Checkbox terms */
.container-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 26px;
    font-size: 0.8rem;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
}

.container-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #ffffff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.container-item:hover .checkmark {
    border-color: var(--brand);
}

.container-item input:checked ~ .checkmark {
    background: var(--brand);
    border-color: var(--brand);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-item input:checked ~ .checkmark:after {
    display: block;
}

.container-item .checkmark:after {
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.main-content .container {
    max-width: 72rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.main-content .row {
    row-gap: 1rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    color: var(--muted);
}

.breadcrumb-list a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--brand);
}

.breadcrumb-sep {
    color: var(--muted);
}

body.high-contrast .breadcrumb-list a {
    color: #ffffff;
}
