/*
|--------------------------------------------------------------------------
| SNOOC beheerpagina
|--------------------------------------------------------------------------
*/

.snooc-beheer-page {
    display: grid;
    gap: 22px;

    width: 100%;
    min-width: 0;
}

/*
|--------------------------------------------------------------------------
| Paginakop
|--------------------------------------------------------------------------
*/

.snooc-beheer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 26px 28px;

    border: 1px solid var(--sn-border);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(159, 29, 53, 0.11),
            transparent 270px
        ),
        #ffffff;

    box-shadow:
        0 16px 40px rgba(79, 13, 27, 0.08);
}

.snooc-beheer-heading {
    display: flex;
    align-items: center;
    gap: 17px;

    min-width: 0;
}

.snooc-beheer-heading-icon {
    display: flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--sn-red),
            var(--sn-red-dark)
        );

    color: #ffffff;

    box-shadow:
        0 12px 28px rgba(159, 29, 53, 0.24);

    font-size: 24px;
}

.snooc-beheer-eyebrow,
.snooc-beheer-card-eyebrow {
    display: block;

    margin: 0 0 5px;

    color: var(--sn-red);

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.snooc-beheer-heading h1 {
    margin: 0;

    color: var(--sn-text);

    font-size: clamp(25px, 4vw, 34px);
    font-weight: 850;
    line-height: 1.1;
}

.snooc-beheer-heading p {
    margin: 7px 0 0;

    color: var(--sn-muted);

    font-size: 14px;
    line-height: 1.5;
}

.snooc-beheer-total,
.snooc-beheer-result-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--sn-red-soft);
    color: var(--sn-red);

    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Hoofdindeling
|--------------------------------------------------------------------------
*/

.snooc-beheer-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(290px, 0.65fr);

    align-items: start;
    gap: 18px;
}

.snooc-beheer-layout >
.snooc-beheer-list-card:only-child {
    grid-column: 1 / -1;
}

.snooc-beheer-card {
    min-width: 0;

    padding: 24px;

    border: 1px solid var(--sn-border);
    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 14px 36px rgba(79, 13, 27, 0.075);
}

.snooc-beheer-create-card {
    position: sticky;
    top: 150px;
}

.snooc-beheer-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 21px;
    padding-bottom: 17px;

    border-bottom: 1px solid var(--sn-border);
}

.snooc-beheer-card-header h2 {
    margin: 0;

    color: var(--sn-text);

    font-size: 20px;
    font-weight: 830;
    line-height: 1.25;
}

.snooc-beheer-card-header p {
    margin: 7px 0 0;

    color: var(--sn-muted);

    font-size: 13px;
    line-height: 1.55;
}

.snooc-beheer-card-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: var(--sn-red-soft);
    color: var(--sn-red);

    font-size: 16px;
}

/*
|--------------------------------------------------------------------------
| Foutmelding
|--------------------------------------------------------------------------
*/

.snooc-beheer-error {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 16px 18px;

    border: 1px solid #fecdd3;
    border-radius: 15px;

    background: #fff1f2;
    color: #be123c;
}

.snooc-beheer-error-icon {
    display: flex;
    flex: 0 0 23px;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    font-size: 19px;
}

.snooc-beheer-error strong {
    display: block;

    margin-bottom: 6px;

    color: #9f1239;

    font-size: 14px;
}

.snooc-beheer-error ul {
    margin: 0;
    padding-left: 19px;

    font-size: 13px;
    line-height: 1.55;
}

/*
|--------------------------------------------------------------------------
| Zoek- en filterbalk
|--------------------------------------------------------------------------
*/

.snooc-beheer-toolbar {
    display: grid;

    grid-template-columns:
        minmax(260px, 1fr)
        minmax(170px, 220px)
        auto;

    align-items: end;
    gap: 12px;

    margin-bottom: 17px;
}

.snooc-beheer-search {
    position: relative;

    display: block;

    min-width: 0;
    margin: 0;
}

.snooc-beheer-search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: #9b747e;

    transform: translateY(-50%);

    pointer-events: none;
}

.snooc-beheer-search input {
    display: block;

    width: 100%;
    height: 46px;
    min-height: 46px;

    margin: 0;
    padding:
        0
        14px
        0
        43px !important;
}

.snooc-beheer-filter {
    display: grid;
    gap: 6px;

    min-width: 0;
    margin: 0;
}

.snooc-beheer-filter-label {
    color: var(--sn-muted);

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.snooc-beheer-filter select {
    display: block;

    width: 100%;
    height: 46px;
    min-height: 46px;

    margin: 0;
}

.snooc-beheer-result-count {
    margin-bottom: 5px;
}

/*
|--------------------------------------------------------------------------
| Tabelcontainer
|--------------------------------------------------------------------------
*/

.snooc-beheer-table-wrap {
    width: 100%;
    min-width: 0;

    overflow-x: auto;

    border: 1px solid var(--sn-border);
    border-radius: 15px;

    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Beheertabel
|--------------------------------------------------------------------------
*/

.snooc-beheer-table {
    width: 100% !important;
    min-width: 720px;

    margin: 0;

    border: 0 !important;
    border-radius: 0 !important;

    border-collapse: collapse !important;
    table-layout: fixed;
}

/*
|--------------------------------------------------------------------------
| Gefilterde rijen altijd verbergen
|--------------------------------------------------------------------------
|
| Dit is belangrijk voor mobiel. De mobiele display:block-regels mogen
| het hidden-attribuut niet overschrijven.
|
*/

.snooc-beheer-table tbody tr[hidden],
.snooc-beheer-table tbody tr.is-filtered-out {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Vaste kolombreedtes schoolbesturen
|--------------------------------------------------------------------------
*/

.snooc-besturen-col-number {
    width: 72px;
}

.snooc-besturen-col-name {
    width: 44%;
}

.snooc-besturen-col-code {
    width: 24%;
}

.snooc-besturen-col-status {
    width: 180px;
}

/*
|--------------------------------------------------------------------------
| Vaste kolombreedtes scholen
|--------------------------------------------------------------------------
*/

.snooc-scholen-col-number {
    width: 72px;
}

.snooc-scholen-col-name {
    width: 23%;
}

.snooc-scholen-col-bestuur {
    width: 31%;
}

.snooc-scholen-col-code {
    width: 20%;
}

.snooc-scholen-col-status {
    width: 150px;
}

/*
|--------------------------------------------------------------------------
| Uitlijning schoolkolommen
|--------------------------------------------------------------------------
*/

.snooc-scholen-cell-number {
    text-align: center !important;
}

.snooc-scholen-cell-name,
.snooc-scholen-cell-bestuur,
.snooc-scholen-cell-code {
    text-align: left !important;
}

.snooc-scholen-cell-status {
    text-align: center !important;
}

/*
|--------------------------------------------------------------------------
| Inhoud binnen schoolkolommen
|--------------------------------------------------------------------------
*/

.snooc-scholen-cell-name .snooc-beheer-inline-field,
.snooc-scholen-cell-bestuur .snooc-beheer-inline-field,
.snooc-scholen-cell-code .snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-scholen-cell-bestuur select {
    width: 100%;
    max-width: 100%;
}

.snooc-scholen-cell-code .snooc-beheer-inline-field {
    max-width: 180px;
}

.snooc-scholen-cell-status .snooc-beheer-status-button,
.snooc-scholen-cell-status .snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

/*
|--------------------------------------------------------------------------
| Tabelheaders
|--------------------------------------------------------------------------
*/

.snooc-beheer-table thead th {
    position: static;

    height: 42px;
    padding: 11px 14px !important;

    border-bottom: 1px solid var(--sn-border) !important;

    background: #f8ecef !important;
    color: #632b39 !important;

    font-size: 11px !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}



/*
|--------------------------------------------------------------------------
| Tabelcellen
|--------------------------------------------------------------------------
*/

.snooc-beheer-table tbody td {
    height: 64px;
    padding: 10px 14px !important;

    border-bottom: 1px solid #f0e7e9;

    background: #ffffff;
    color: #4a373d;

    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    vertical-align: middle;
}

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

.snooc-beheer-table tbody tr:hover td {
    background: #fffafb;
}

/*
|--------------------------------------------------------------------------
| Uitlijning per kolom
|--------------------------------------------------------------------------
*/

.snooc-besturen-cell-number {
    text-align: center !important;
}

.snooc-besturen-cell-name {
    text-align: left !important;
}

.snooc-besturen-cell-code {
    text-align: left !important;
}

.snooc-besturen-cell-status {
    text-align: center !important;
}

/*
|--------------------------------------------------------------------------
| Inhoud binnen kolommen
|--------------------------------------------------------------------------
*/

.snooc-besturen-cell-name
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-besturen-cell-code
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: 180px;
}

.snooc-besturen-cell-status
.snooc-beheer-status-button,
.snooc-besturen-cell-status
.snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

/*
|--------------------------------------------------------------------------
| Rij-inhoud
|--------------------------------------------------------------------------
*/

.snooc-beheer-row-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 29px;
    height: 29px;

    padding: 0 8px;

    border-radius: 9px;

    background: #f8eff1;
    color: #89616b;

    font-size: 11px;
    font-weight: 800;
}

.snooc-beheer-name {
    display: block;

    color: var(--sn-text);

    font-weight: 700;
    line-height: 1.45;

    overflow-wrap: anywhere;
}

.snooc-beheer-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 9px;

    border-radius: 999px;

    background: var(--sn-red-soft);
    color: var(--sn-red-dark);

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Inline bewerken
|--------------------------------------------------------------------------
*/

.snooc-beheer-inline-field {
    position: relative;

    width: 100%;
    min-width: 0;
}

.snooc-beheer-inline-short {
    width: 100%;
    min-width: 0;
    max-width: 180px;
}

.snooc-beheer-inline-field input {
    width: 100%;
    height: 41px;
    min-height: 41px;

    padding:
        8px
        30px
        8px
        10px !important;

    border: 1px solid transparent !important;
    border-radius: 10px !important;

    background: transparent !important;
    color: var(--sn-text);

    font-size: 13px;
    font-weight: 700;

    box-shadow: none !important;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.snooc-beheer-inline-field input:hover {
    border-color:
        var(--sn-border-strong) !important;

    background: #ffffff !important;
}

.snooc-beheer-inline-field input:focus {
    border-color:
        var(--sn-red) !important;

    outline: none;

    background: #ffffff !important;

    box-shadow:
        0 0 0 4px rgba(159, 29, 53, 0.10) !important;
}

.snooc-beheer-inline-state {
    position: absolute;
    top: calc(100% + 3px);
    right: 2px;
    z-index: 3;

    color: var(--sn-muted);

    font-size: 9px;
    font-weight: 750;
    white-space: nowrap;
}

.snooc-beheer-inline-field.is-saving
.snooc-beheer-inline-state {
    color: #b45309;
}

.snooc-beheer-inline-field.is-saved
.snooc-beheer-inline-state {
    color: #087f5b;
}

.snooc-beheer-inline-field.is-error
.snooc-beheer-inline-state {
    color: #be123c;
}

.snooc-beheer-inline-field.is-error input {
    border-color: #e11d48 !important;

    background: #fff1f2 !important;
}

/*
|--------------------------------------------------------------------------
| Status
|--------------------------------------------------------------------------
*/

.snooc-beheer-status-button,
.snooc-beheer-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 36px;

    padding: 7px 11px;

    border-radius: 999px !important;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.snooc-beheer-status-button {
    cursor: pointer;

    box-shadow: none !important;
    transform: none !important;

    transition:
        filter 0.18s ease,
        opacity 0.18s ease;
}

.snooc-beheer-status-button.is-active,
.snooc-beheer-status-badge.is-active {
    border: 1px solid #a7f3d0 !important;

    background: #ecfdf5 !important;
    color: #047857;
}

.snooc-beheer-status-button.is-inactive,
.snooc-beheer-status-badge.is-inactive {
    border: 1px solid #fecdd3 !important;

    background: #fff1f2 !important;
    color: #be123c;
}

.snooc-beheer-status-button:hover {
    filter: brightness(0.97);
}

.snooc-beheer-status-button:disabled,
.snooc-beheer-status-button.is-loading {
    opacity: 0.65;

    cursor: wait;
}

.snooc-beheer-status-dot {
    display: block;
    flex: 0 0 7px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.7);
}

/*
|--------------------------------------------------------------------------
| Toevoegformulier
|--------------------------------------------------------------------------
*/

.snooc-beheer-form {
    display: grid;
    gap: 19px;
}

.snooc-beheer-field {
    min-width: 0;
}

.snooc-beheer-field label {
    display: block;

    margin-bottom: 8px;

    color: #4c383e;

    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.snooc-beheer-field label span {
    color: var(--sn-red);
}

.snooc-beheer-input-wrap {
    display: flex;
    align-items: stretch;

    width: 100%;
    min-height: 50px;

    overflow: hidden;

    border: 1px solid var(--sn-border-strong);
    border-radius: 13px;

    background: #ffffff;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.snooc-beheer-input-wrap:focus-within {
    border-color: var(--sn-red);

    box-shadow:
        0 0 0 4px rgba(159, 29, 53, 0.11);
}

.snooc-beheer-input-icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;

    width: 48px;

    color: #9b747e;

    pointer-events: none;
}

.snooc-beheer-input-wrap input {
    flex: 1 1 auto;

    width: 1%;
    min-width: 0;
    min-height: 48px;

    padding:
        0
        13px
        0
        0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    outline: none;

    background: transparent !important;

    box-shadow: none !important;
}

.snooc-beheer-field small {
    display: block;

    margin-top: 7px;

    color: var(--sn-muted);

    font-size: 11px;
    line-height: 1.4;
}

.snooc-beheer-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    min-height: 48px;

    padding: 11px 17px;

    border: 0 !important;
    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            var(--sn-red),
            var(--sn-red-dark)
        ) !important;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 9px 22px rgba(159, 29, 53, 0.22);

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.snooc-beheer-primary-button:hover,
.snooc-beheer-primary-button:focus-visible {
    outline: none;

    transform: translateY(-1px);

    box-shadow:
        0 13px 28px rgba(159, 29, 53, 0.28);
}

/*
|--------------------------------------------------------------------------
| Lege staten
|--------------------------------------------------------------------------
*/

.snooc-beheer-empty,
.snooc-beheer-empty-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    min-height: 220px;

    padding: 30px;

    color: var(--sn-muted);

    text-align: center;
}

.snooc-beheer-empty[hidden],
.snooc-beheer-empty-filter[hidden] {
    display: none !important;
}

.snooc-beheer-empty-icon,
.snooc-beheer-empty-filter > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 14px;

    border-radius: 18px;

    background: var(--sn-red-soft);
    color: var(--sn-red);

    font-size: 23px;
}

.snooc-beheer-empty h3,
.snooc-beheer-empty-filter strong {
    margin: 0;

    color: var(--sn-text);

    font-size: 17px;
}

.snooc-beheer-empty p,
.snooc-beheer-empty-filter span {
    margin: 7px 0 0;

    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1050px) {
    .snooc-beheer-layout {
        grid-template-columns: 1fr;
    }

    .snooc-beheer-create-card {
        position: static;
    }
}

/*
|--------------------------------------------------------------------------
| Mobiel
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    .snooc-beheer-page {
        gap: 15px;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele paginakop
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;

        padding: 19px;
    }

    .snooc-beheer-heading {
        align-items: flex-start;
    }

    .snooc-beheer-heading-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        border-radius: 15px;

        font-size: 20px;
    }

    .snooc-beheer-total {
        align-self: flex-start;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele kaarten en toolbar
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-card {
        padding: 17px;
    }

    .snooc-beheer-card-header {
        gap: 12px;

        margin-bottom: 17px;
        padding-bottom: 14px;
    }

    .snooc-beheer-toolbar {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .snooc-beheer-search input,
    .snooc-beheer-filter select {
        height: 46px;
        min-height: 46px;
    }

    .snooc-beheer-result-count {
        justify-self: flex-start;

        margin: 0;
    }

    /*
    |--------------------------------------------------------------------------
    | Tabel naar kaarten
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table-wrap {
        overflow: visible;

        border: 0;
        border-radius: 0;

        background: transparent;
    }

    .snooc-beheer-table {
        display: block !important;

        width: 100% !important;
        min-width: 0 !important;

        border: 0 !important;

        background: transparent !important;

        table-layout: auto !important;
    }

    .snooc-beheer-table colgroup,
    .snooc-beheer-table thead {
        display: none !important;
    }

    .snooc-beheer-table tbody {
        display: grid !important;
        gap: 13px;

        width: 100% !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Cruciaal: filters blijven mobiel werken
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table tbody tr[hidden],
    .snooc-beheer-table tbody tr.is-filtered-out {
        display: none !important;
    }

    .snooc-beheer-table tbody tr:not([hidden]) {
        position: relative;

        display: grid !important;
        gap: 0;

        width: 100% !important;

        margin: 0 !important;
        padding:
            17px
            15px
            14px !important;

        border: 1px solid var(--sn-border) !important;
        border-radius: 16px !important;

        background: #ffffff !important;

        box-shadow:
            0 8px 22px rgba(79, 13, 27, 0.06);
    }

    .snooc-beheer-table tbody tr:not([hidden]):hover {
        border-color: #dfbdc5 !important;

        box-shadow:
            0 12px 28px rgba(79, 13, 27, 0.09);
    }

    .snooc-beheer-table tbody tr:hover td {
        background: transparent !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele cellen
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table tbody td {
        display: grid !important;

        grid-template-columns:
            minmax(106px, 34%)
            minmax(0, 1fr);

        align-items: center;
        gap: 12px;

        width: 100% !important;
        height: auto !important;
        min-height: 46px;

        margin: 0 !important;
        padding: 9px 0 !important;

        border: 0 !important;
        border-bottom: 1px solid #f2e9eb !important;

        background: transparent !important;

        text-align: left !important;
    }

    .snooc-beheer-table tbody td:last-child {
        border-bottom: 0 !important;
    }

    .snooc-beheer-table tbody td::before {
        content: attr(data-label);

        display: block;

        color: #81636b;

        font-size: 10px;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: 0.055em;
        text-transform: uppercase;
    }

    /*
    |--------------------------------------------------------------------------
    | Nummerbadge rechtsboven
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table
    .snooc-besturen-cell-number {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;

        display: block !important;

        width: auto !important;
        min-height: 0;

        padding: 0 !important;

        border: 0 !important;
    }

    .snooc-beheer-table
    .snooc-besturen-cell-number::before {
        display: none !important;
    }

    .snooc-beheer-row-number {
        min-width: 31px;
        height: 31px;

        padding: 0 9px;

        border-radius: 10px;

        background: var(--sn-red-soft);
        color: var(--sn-red-dark);
    }

    /*
    |--------------------------------------------------------------------------
    | Eerste rij ruimte geven voor badge
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table
    .snooc-besturen-cell-name {
        padding-top: 23px !important;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele naam en afkorting
    |--------------------------------------------------------------------------
    */

    .snooc-besturen-cell-name,
    .snooc-besturen-cell-code,
    .snooc-besturen-cell-status {
        text-align: left !important;
    }

    .snooc-beheer-name {
        min-width: 0;

        font-size: 13px;
        font-weight: 750;
        line-height: 1.45;

        overflow-wrap: anywhere;
    }

    .snooc-beheer-code {
        justify-self: start;

        padding: 6px 10px;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele inline velden
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-inline-field,
    .snooc-beheer-inline-short {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .snooc-beheer-inline-field input {
        width: 100%;
        height: 42px;
        min-height: 42px;

        padding:
            8px
            10px !important;

        border: 1px solid var(--sn-border-strong) !important;
        border-radius: 10px !important;

        background: #ffffff !important;

        font-size: 13px;
    }

    .snooc-beheer-inline-state {
        position: static;

        display: block;

        min-height: 12px;
        margin-top: 3px;

        font-size: 9px;
        text-align: left;
    }

    /*
    |--------------------------------------------------------------------------
    | Mobiele status
    |--------------------------------------------------------------------------
    */

    .snooc-besturen-cell-status
    .snooc-beheer-status-button,
    .snooc-besturen-cell-status
    .snooc-beheer-status-badge {
        justify-self: start;

        margin: 0;
    }
	
	/*
	|--------------------------------------------------------------------------
	| Scholen mobiel
	|--------------------------------------------------------------------------
	*/

	.snooc-beheer-table .snooc-scholen-cell-number {
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 2;

		display: block !important;

		width: auto !important;
		min-height: 0;

		padding: 0 !important;

		border: 0 !important;
	}

	.snooc-beheer-table .snooc-scholen-cell-number::before {
		display: none !important;
	}

	.snooc-beheer-table .snooc-scholen-cell-name {
		padding-top: 23px !important;
	}

	.snooc-scholen-cell-name,
	.snooc-scholen-cell-bestuur,
	.snooc-scholen-cell-code,
	.snooc-scholen-cell-status {
		text-align: left !important;
	}

	.snooc-scholen-cell-status .snooc-beheer-status-button,
	.snooc-scholen-cell-status .snooc-beheer-status-badge {
		justify-self: start;

		margin: 0;
	}
}

/*
|--------------------------------------------------------------------------
| Kleine mobiele schermen
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {
    .snooc-beheer-heading h1 {
        font-size: 25px;
    }

    .snooc-beheer-heading p {
        font-size: 12.5px;
    }

    .snooc-beheer-card {
        padding: 14px;
    }

    .snooc-beheer-card-header h2 {
        font-size: 17px;
    }

    .snooc-beheer-card-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .snooc-beheer-table tbody tr:not([hidden]) {
        padding:
            16px
            13px
            13px !important;
    }

    .snooc-beheer-table tbody td {
        grid-template-columns:
            96px
            minmax(0, 1fr);

        gap: 9px;

        min-height: 43px;

        padding:
            8px
            0 !important;
    }

    .snooc-beheer-table
    .snooc-besturen-cell-name {
        padding-top: 22px !important;
    }

    .snooc-beheer-table tbody td::before {
        font-size: 9px;
    }

    .snooc-beheer-name {
        font-size: 12.5px;
    }

    .snooc-beheer-status-button,
    .snooc-beheer-status-badge {
        min-height: 34px;

        padding: 6px 10px;

        font-size: 10px;
    }
	
	.snooc-beheer-table .snooc-scholen-cell-name {
		padding-top: 22px !important;
	}
	
	.snooc-scholen-col-name {
		width: 24%;
	}

	.snooc-scholen-col-bestuur {
		width: 32%;
	}

	.snooc-scholen-col-code {
		width: 18%;
	}
}

/*
|--------------------------------------------------------------------------
| Zeer smalle schermen
|--------------------------------------------------------------------------
*/

@media (max-width: 360px) {
    .snooc-beheer-table tbody td {
        grid-template-columns:
            82px
            minmax(0, 1fr);

        gap: 8px;
    }

    .snooc-beheer-table tbody tr:not([hidden]) {
        padding:
            15px
            11px
            12px !important;
    }

    .snooc-beheer-table
    .snooc-besturen-cell-number {
        top: 10px;
        right: 10px;
    }

    .snooc-beheer-row-number {
        min-width: 28px;
        height: 28px;

        padding: 0 7px;
    }
}

/*
|--------------------------------------------------------------------------
| Print
|--------------------------------------------------------------------------
*/

@media print {
    .snooc-beheer-toolbar,
    .snooc-beheer-create-card,
    .snooc-beheer-status-button {
        display: none !important;
    }

    .snooc-beheer-layout {
        display: block;
    }

    .snooc-beheer-card {
        padding: 0;

        border: 0;

        box-shadow: none;
    }

    .snooc-beheer-table {
        min-width: 0;
    }

    .snooc-beheer-table tbody tr[hidden] {
        display: none !important;
    }
}

/*
|--------------------------------------------------------------------------
| Kolommen gebruikerstypen
|--------------------------------------------------------------------------
*/

.snooc-gebruikerstypen-col-number {
    width: 72px;
}

.snooc-gebruikerstypen-col-type {
    width: 48%;
}

.snooc-gebruikerstypen-col-code {
    width: 25%;
}

.snooc-gebruikerstypen-col-status {
    width: 170px;
}

.snooc-gebruikerstypen-cell-number {
    text-align: center !important;
}

.snooc-gebruikerstypen-cell-type,
.snooc-gebruikerstypen-cell-code {
    text-align: left !important;
}

.snooc-gebruikerstypen-cell-status {
    text-align: center !important;
}

.snooc-gebruikerstypen-cell-type
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-gebruikerstypen-cell-code
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: 180px;
}

.snooc-gebruikerstypen-cell-status
.snooc-beheer-status-button,
.snooc-gebruikerstypen-cell-status
.snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 760px) {
    .snooc-beheer-table
    .snooc-gebruikerstypen-cell-number {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;

        display: block !important;

        width: auto !important;
        min-height: 0;

        padding: 0 !important;

        border: 0 !important;
    }

    .snooc-beheer-table
    .snooc-gebruikerstypen-cell-number::before {
        display: none !important;
    }

    .snooc-beheer-table
    .snooc-gebruikerstypen-cell-type {
        padding-top: 23px !important;
    }

    .snooc-gebruikerstypen-cell-type,
    .snooc-gebruikerstypen-cell-code,
    .snooc-gebruikerstypen-cell-status {
        text-align: left !important;
    }

    .snooc-gebruikerstypen-cell-status
    .snooc-beheer-status-button,
    .snooc-gebruikerstypen-cell-status
    .snooc-beheer-status-badge {
        justify-self: start;

        margin: 0;
    }
}

@media (max-width: 480px) {
    .snooc-beheer-table
    .snooc-gebruikerstypen-cell-type {
        padding-top: 22px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Kolommen geslachten
|--------------------------------------------------------------------------
*/

.snooc-geslacht-col-number {
    width: 72px;
}

.snooc-geslacht-col-name {
    width: auto;
}

.snooc-geslacht-col-status {
    width: 180px;
}

.snooc-geslacht-cell-number {
    text-align: center !important;
}

.snooc-geslacht-cell-name {
    text-align: left !important;
}

.snooc-geslacht-cell-status {
    text-align: center !important;
}

.snooc-geslacht-cell-name
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-geslacht-cell-status
.snooc-beheer-status-button,
.snooc-geslacht-cell-status
.snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 760px) {
    .snooc-beheer-table
    .snooc-geslacht-cell-number {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;

        display: block !important;

        width: auto !important;
        min-height: 0;

        padding: 0 !important;

        border: 0 !important;
    }

    .snooc-beheer-table
    .snooc-geslacht-cell-number::before {
        display: none !important;
    }

    .snooc-beheer-table
    .snooc-geslacht-cell-name {
        padding-top: 23px !important;
    }

    .snooc-geslacht-cell-name,
    .snooc-geslacht-cell-status {
        text-align: left !important;
    }

    .snooc-geslacht-cell-status
    .snooc-beheer-status-button,
    .snooc-geslacht-cell-status
    .snooc-beheer-status-badge {
        justify-self: start;

        margin: 0;
    }
}

@media (max-width: 480px) {
    .snooc-beheer-table
    .snooc-geslacht-cell-name {
        padding-top: 22px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Kolommen vakgebieden
|--------------------------------------------------------------------------
*/

.snooc-vakgebied-col-number {
    width: 72px;
}

.snooc-vakgebied-col-name {
    width: auto;
}

.snooc-vakgebied-col-status {
    width: 180px;
}

.snooc-vakgebied-cell-number {
    text-align: center !important;
}

.snooc-vakgebied-cell-name {
    text-align: left !important;
}

.snooc-vakgebied-cell-status {
    text-align: center !important;
}

.snooc-vakgebied-cell-name
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-vakgebied-cell-status
.snooc-beheer-status-button,
.snooc-vakgebied-cell-status
.snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 760px) {
    .snooc-beheer-table
    .snooc-vakgebied-cell-number {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;

        display: block !important;

        width: auto !important;
        min-height: 0;

        padding: 0 !important;

        border: 0 !important;
    }

    .snooc-beheer-table
    .snooc-vakgebied-cell-number::before {
        display: none !important;
    }

    .snooc-beheer-table
    .snooc-vakgebied-cell-name {
        padding-top: 23px !important;
    }

    .snooc-vakgebied-cell-name,
    .snooc-vakgebied-cell-status {
        text-align: left !important;
    }

    .snooc-vakgebied-cell-status
    .snooc-beheer-status-button,
    .snooc-vakgebied-cell-status
    .snooc-beheer-status-badge {
        justify-self: start;

        margin: 0;
    }
}

@media (max-width: 480px) {
    .snooc-beheer-table
    .snooc-vakgebied-cell-name {
        padding-top: 22px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Kolommen bedrijven
|--------------------------------------------------------------------------
*/

.snooc-bedrijf-table {
    min-width: 1250px;
}

.snooc-bedrijf-col-number {
    width: 64px;
}

.snooc-bedrijf-col-code {
    width: 125px;
}

.snooc-bedrijf-col-name {
    width: 220px;
}

.snooc-bedrijf-col-address {
    width: 250px;
}

.snooc-bedrijf-col-phone {
    width: 165px;
}

.snooc-bedrijf-col-email {
    width: 245px;
}

.snooc-bedrijf-col-status {
    width: 155px;
}

/*
|--------------------------------------------------------------------------
| Uitlijning bedrijfskolommen
|--------------------------------------------------------------------------
*/

.snooc-bedrijf-cell-number {
    text-align: center !important;
}

.snooc-bedrijf-cell-code,
.snooc-bedrijf-cell-name,
.snooc-bedrijf-cell-address,
.snooc-bedrijf-cell-phone,
.snooc-bedrijf-cell-email {
    text-align: left !important;
}

.snooc-bedrijf-cell-status {
    text-align: center !important;
}

/*
|--------------------------------------------------------------------------
| Inline velden bedrijf
|--------------------------------------------------------------------------
*/

.snooc-bedrijf-cell-code
.snooc-beheer-inline-field,
.snooc-bedrijf-cell-name
.snooc-beheer-inline-field,
.snooc-bedrijf-cell-address
.snooc-beheer-inline-field,
.snooc-bedrijf-cell-phone
.snooc-beheer-inline-field,
.snooc-bedrijf-cell-email
.snooc-beheer-inline-field {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.snooc-bedrijf-cell-status
.snooc-beheer-status-button,
.snooc-bedrijf-cell-status
.snooc-beheer-status-badge {
    margin-right: auto;
    margin-left: auto;
}

.snooc-beheer-email-link {
    color: var(--sn-red);
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.snooc-beheer-email-link:hover,
.snooc-beheer-email-link:focus-visible {
    color: var(--sn-red-dark);
    text-decoration: underline;
}

.snooc-beheer-empty-value {
    color: var(--sn-muted);
}

/*
|--------------------------------------------------------------------------
| Bedrijven mobiel
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    .snooc-bedrijf-table {
        min-width: 0;
    }

    .snooc-beheer-table
    .snooc-bedrijf-cell-number {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;

        display: block !important;

        width: auto !important;
        min-height: 0;

        padding: 0 !important;

        border: 0 !important;
    }

    .snooc-beheer-table
    .snooc-bedrijf-cell-number::before {
        display: none !important;
    }

    .snooc-beheer-table
    .snooc-bedrijf-cell-code {
        padding-top: 23px !important;
    }

    .snooc-bedrijf-cell-code,
    .snooc-bedrijf-cell-name,
    .snooc-bedrijf-cell-address,
    .snooc-bedrijf-cell-phone,
    .snooc-bedrijf-cell-email,
    .snooc-bedrijf-cell-status {
        text-align: left !important;
    }

    .snooc-bedrijf-cell-status
    .snooc-beheer-status-button,
    .snooc-bedrijf-cell-status
    .snooc-beheer-status-badge {
        justify-self: start;

        margin: 0;
    }
}

@media (max-width: 480px) {
    .snooc-beheer-table
    .snooc-bedrijf-cell-code {
        padding-top: 22px !important;
    }
}

/*
|--------------------------------------------------------------------------
| Periodes
|--------------------------------------------------------------------------
*/

.snooc-periodes-table {
    width: 100%;
    min-width: 680px;

    table-layout: fixed;
}

.snooc-periodes-col-number {
    width: 72px;
}

.snooc-periodes-col-begin {
    width: 34%;
}

.snooc-periodes-col-end {
    width: 34%;
}

.snooc-periodes-col-action {
    width: 150px;
}

/*
|--------------------------------------------------------------------------
| Uitlijning periodekolommen
|--------------------------------------------------------------------------
*/

.snooc-periodes-cell-number {
    text-align: center !important;
}

.snooc-periodes-cell-begin,
.snooc-periodes-cell-end {
    text-align: left !important;
}

.snooc-periodes-cell-action {
    text-align: center !important;
}

/*
|--------------------------------------------------------------------------
| Inline datumvelden
|--------------------------------------------------------------------------
*/

.snooc-periodes-cell-begin .snooc-beheer-inline-field,
.snooc-periodes-cell-end .snooc-beheer-inline-field {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    max-width: 230px;

    margin: 0;
}

.snooc-periodes-cell-begin .snooc-beheer-inline-field input,
.snooc-periodes-cell-end .snooc-beheer-inline-field input {
    display: block;

    width: 100%;
    height: 42px;
    min-height: 42px;

    margin: 0;
    padding:
        8px
        12px
        8px
        40px !important;

    border: 1px solid #e7c8cf !important;
    border-radius: 11px !important;

    outline: 0;

    background: #ffffff !important;
    color: #32272a;

    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    line-height: 24px;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.snooc-periodes-cell-begin .snooc-beheer-inline-field input:hover,
.snooc-periodes-cell-end .snooc-beheer-inline-field input:hover {
    border-color: #d9aeb9 !important;
}

.snooc-periodes-cell-begin .snooc-beheer-inline-field input:focus,
.snooc-periodes-cell-end .snooc-beheer-inline-field input:focus {
    border-color: var(--sn-red) !important;

    background: #ffffff !important;

    box-shadow:
        0 0 0 3px rgba(159, 29, 53, 0.10) !important;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-saving input,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-saving input {
    border-color: #d8a94b !important;
    background: #fffdf5 !important;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-saved input,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-saved input {
    border-color: #69c59e !important;
    background: #f3fff9 !important;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-error input,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-error input {
    border-color: #e96c82 !important;
    background: #fff7f8 !important;
}

/*
|--------------------------------------------------------------------------
| Kalendericonen in tabel
|--------------------------------------------------------------------------
*/

.snooc-periode-date-icon {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    margin: 0;
    padding: 0;

    color: #a46878;

    font-size: 14px;
    line-height: 1;

    transform: translateY(-50%);

    pointer-events: none;
}

.snooc-periode-date-icon i {
    display: block;

    width: auto;
    height: auto;

    margin: 0;
    padding: 0;

    border: 0;

    color: inherit;

    font-size: inherit;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Inline opslagstatus
|--------------------------------------------------------------------------
*/

.snooc-periodes-cell-begin .snooc-beheer-inline-state,
.snooc-periodes-cell-end .snooc-beheer-inline-state {
    position: absolute;
    top: calc(100% + 3px);
    right: 2px;
    left: auto;
    z-index: 3;

    display: block;

    max-width: calc(100% - 4px);

    color: #80636b;

    font-size: 9px;
    font-weight: 750;
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-error
.snooc-beheer-inline-state,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-error
.snooc-beheer-inline-state {
    color: #be123c;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-saving
.snooc-beheer-inline-state,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-saving
.snooc-beheer-inline-state {
    color: #b45309;
}

.snooc-periodes-cell-begin
.snooc-beheer-inline-field.is-saved
.snooc-beheer-inline-state,
.snooc-periodes-cell-end
.snooc-beheer-inline-field.is-saved
.snooc-beheer-inline-state {
    color: #087f5b;
}

/*
|--------------------------------------------------------------------------
| Verwijderknop
|--------------------------------------------------------------------------
*/

.snooc-periode-delete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 36px;

    margin: 0;
    padding: 7px 11px;

    border: 1px solid #fecdd3;
    border-radius: 10px;

    outline: 0;

    background: #fff1f2;
    color: #be123c;

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;

    cursor: pointer;

    box-shadow: none;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.snooc-periode-delete-button i {
    display: block;

    margin: 0;

    border: 0;

    font-size: 12px;
    line-height: 1;
}

.snooc-periode-delete-button:hover,
.snooc-periode-delete-button:focus-visible {
    border-color: #fda4af;

    outline: 0;

    background: #ffe4e6;
    color: #9f1239;

    box-shadow:
        0 6px 15px rgba(190, 18, 60, 0.12);

    transform: translateY(-1px);
}

.snooc-periode-delete-button:disabled {
    opacity: 0.55;

    cursor: wait;

    box-shadow: none;
    transform: none;
}

/*
|--------------------------------------------------------------------------
| Air Datepicker passend bij SNOOC
|--------------------------------------------------------------------------
*/

.air-datepicker {
    --adp-font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --adp-accent-color: var(--sn-red);
    --adp-background-color: #ffffff;
    --adp-color: var(--sn-text);
    --adp-color-secondary: var(--sn-muted);
    --adp-border-color: var(--sn-border);
    --adp-border-color-inner: var(--sn-border);
    --adp-cell-background-color-selected: var(--sn-red);
    --adp-cell-background-color-selected-hover: var(--sn-red-dark);
    --adp-cell-background-color-hover: var(--sn-red-soft);

    border: 1px solid var(--sn-border);
    border-radius: 15px;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    box-shadow:
        0 18px 44px rgba(79, 13, 27, 0.17);
}

.air-datepicker-nav {
    border-bottom-color: var(--sn-border);
}

.air-datepicker-nav--title,
.air-datepicker-nav--action {
    border-radius: 9px;
}

.air-datepicker-nav--title:hover,
.air-datepicker-nav--action:hover {
    background: var(--sn-red-soft);
}

.air-datepicker-cell.-selected-,
.air-datepicker-cell.-selected-.-focus- {
    background: var(--sn-red);
    color: #ffffff;
}

.air-datepicker-cell.-selected-.-current- {
    background: var(--sn-red);
    color: #ffffff;
}

.air-datepicker-cell.-current- {
    color: var(--sn-red);

    font-weight: 800;
}

.air-datepicker-cell.-disabled- {
    color: #c8b9bd;
}

.air-datepicker-buttons {
    border-top-color: var(--sn-border);
}

.air-datepicker-button {
    color: var(--sn-red);

    font-weight: 750;
}

.air-datepicker-button:hover {
    background: var(--sn-red-soft);
}

/*
|--------------------------------------------------------------------------
| Periode verwijdermodal
|--------------------------------------------------------------------------
*/

#periodeDeleteDescription {
    overflow-wrap: anywhere;
}

#periodeDeleteConfirm.is-loading i {
    animation:
        snooc-period-delete-spin
        0.8s
        linear
        infinite;
}

@keyframes snooc-period-delete-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Periodes mobiel
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    .snooc-periodes-table {
        min-width: 0;

        table-layout: auto;
    }

    /*
    |--------------------------------------------------------------------------
    | Nummer als eerste regel links
    |--------------------------------------------------------------------------
    |
    | Geen absolute positionering.
    | Geen extra # via ::before.
    | Alleen de bestaande nummerbadge wordt getoond.
    |
    */

    .snooc-beheer-table
    .snooc-periodes-cell-number {
        position: static !important;

        display: flex !important;
        align-items: center;
        justify-content: flex-start;

        grid-template-columns: none !important;

        width: 100% !important;
        height: auto !important;
        min-height: 38px;

        margin: 0 !important;
        padding:
            0
            0
            7px !important;

        border: 0 !important;
        border-bottom: 1px solid #f2e9eb !important;

        background: transparent !important;

        text-align: left !important;
    }

    .snooc-beheer-table
    .snooc-periodes-cell-number::before {
        display: none !important;

        content: none !important;
    }

    .snooc-periodes-cell-number
    .snooc-beheer-row-number {
        justify-self: start;

        margin: 0;
    }

    /*
    |--------------------------------------------------------------------------
    | Overige periodecellen
    |--------------------------------------------------------------------------
    */

    .snooc-beheer-table
    .snooc-periodes-cell-begin,
    .snooc-beheer-table
    .snooc-periodes-cell-end,
    .snooc-beheer-table
    .snooc-periodes-cell-action {
        position: static !important;

        text-align: left !important;
    }

    .snooc-beheer-table
    .snooc-periodes-cell-begin {
        padding-top: 9px !important;
    }

    .snooc-periodes-cell-begin .snooc-beheer-inline-field,
    .snooc-periodes-cell-end .snooc-beheer-inline-field {
        display: flex;
        align-items: center;

        width: 100%;
        max-width: none;

        margin: 0;
    }

    .snooc-periodes-cell-begin .snooc-beheer-inline-field input,
    .snooc-periodes-cell-end .snooc-beheer-inline-field input {
        width: 100%;
        height: 42px;
        min-height: 42px;

        padding:
            8px
            12px
            8px
            41px !important;

        border-color: var(--sn-border-strong) !important;

        background: #ffffff !important;

        font-size: 13px;
        line-height: 24px;
    }

    .snooc-periode-date-icon {
        top: 50%;
        left: 13px;

        width: 18px;
        height: 18px;

        font-size: 14px;

        transform: translateY(-50%);
    }

    .snooc-periodes-cell-begin .snooc-beheer-inline-state,
    .snooc-periodes-cell-end .snooc-beheer-inline-state {
        position: static;

        display: block;

        width: 100%;
        min-height: 12px;
        max-width: none;

        margin-top: 3px;

        font-size: 9px;
        text-align: left;
        white-space: normal;
    }

    .snooc-periode-delete-button {
        justify-self: start;

        width: auto;
        min-width: 120px;
    }
}

/*
|--------------------------------------------------------------------------
| Periodes kleine mobiele schermen
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {
    .snooc-beheer-table
    .snooc-periodes-cell-number {
        min-height: 36px;

        padding-bottom: 6px !important;
    }

    .snooc-beheer-table
    .snooc-periodes-cell-begin {
        padding-top: 8px !important;
    }

    .snooc-periodes-cell-begin .snooc-beheer-inline-field input,
    .snooc-periodes-cell-end .snooc-beheer-inline-field input {
        height: 40px;
        min-height: 40px;

        padding:
            7px
            10px
            7px
            39px !important;

        font-size: 12px;
        line-height: 24px;
    }

    .snooc-periode-date-icon {
        left: 12px;

        width: 17px;
        height: 17px;

        font-size: 13px;
    }

    .snooc-periode-delete-button {
        width: 100%;
        min-width: 0;
    }
}

/*
|--------------------------------------------------------------------------
| E-mailconfiguratie
|--------------------------------------------------------------------------
*/

.snooc-email-settings-page {
    max-width: 1180px;
}

.snooc-email-settings-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 680px)
        minmax(240px, 320px);
    align-items: start;
    gap: 18px;

    margin-top: 18px;
}

.snooc-email-settings-card {
    width: 100%;
    min-width: 0;
}

.snooc-email-settings-form {
    gap: 18px;
}

.snooc-email-textarea-wrap {
    position: relative;

    width: 100%;
}

.snooc-email-textarea-icon {
    position: absolute;
    top: 17px;
    left: 15px;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: #a46878;

    font-size: 14px;
    line-height: 1;

    pointer-events: none;
}

.snooc-email-textarea-icon i {
    margin: 0;
    padding: 0;

    border: 0;

    font-size: inherit;
    line-height: 1;
}

.snooc-email-textarea-wrap textarea {
    display: block;

    width: 100%;
    min-height: 112px;

    margin: 0;
    padding:
        14px
        15px
        14px
        43px;

    resize: vertical;

    border: 1px solid var(--sn-border-strong);
    border-radius: 12px;

    outline: 0;

    background: #ffffff;
    color: var(--sn-text);

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.snooc-email-textarea-wrap textarea::placeholder {
    color: #a8959a;
    font-weight: 500;
}

.snooc-email-textarea-wrap textarea:hover {
    border-color: #d9aeb9;
}

.snooc-email-textarea-wrap textarea:focus {
    border-color: var(--sn-red);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(159, 29, 53, 0.10);
}

.snooc-email-settings-actions {
    display: flex;
    justify-content: flex-end;

    padding-top: 2px;
}

.snooc-email-settings-actions
.snooc-beheer-primary-button {
    width: auto;
    min-width: 190px;
}

/*
|--------------------------------------------------------------------------
| Informatiekader e-mail
|--------------------------------------------------------------------------
*/

.snooc-email-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 17px;

    border: 1px solid #ead7dc;
    border-radius: 14px;

    background: #fffafb;

    box-shadow:
        0 8px 22px rgba(79, 13, 27, 0.05);
}

.snooc-email-info-icon {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #f8e9ed;
    color: var(--sn-red);

    font-size: 14px;
}

.snooc-email-info-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--sn-text);

    font-size: 13px;
    font-weight: 800;
}

.snooc-email-info-card p {
    margin: 0 0 10px;

    color: var(--sn-muted);

    font-size: 12px;
    line-height: 1.5;
}

.snooc-email-info-card code {
    display: block;

    padding: 8px 9px;

    border: 1px solid #ead7dc;
    border-radius: 8px;

    background: #ffffff;
    color: #7c2638;

    font-family:
        Consolas,
        Monaco,
        monospace;
    font-size: 10px;
    line-height: 1.4;

    overflow-wrap: anywhere;
}

/*
|--------------------------------------------------------------------------
| E-mailconfiguratie tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .snooc-email-settings-layout {
        grid-template-columns: 1fr;
    }

    .snooc-email-info-card {
        max-width: 680px;
    }
}

/*
|--------------------------------------------------------------------------
| E-mailconfiguratie mobiel
|--------------------------------------------------------------------------
*/

@media (max-width: 600px) {
    .snooc-email-settings-layout {
        gap: 14px;

        margin-top: 14px;
    }

    .snooc-email-textarea-wrap textarea {
        min-height: 125px;

        padding:
            13px
            13px
            13px
            41px;

        font-size: 13px;
    }

    .snooc-email-textarea-icon {
        top: 16px;
        left: 14px;
    }

    .snooc-email-settings-actions {
        justify-content: stretch;
    }

    .snooc-email-settings-actions
    .snooc-beheer-primary-button {
        width: 100%;
        min-width: 0;
    }

    .snooc-email-info-card {
        padding: 14px;
    }
}

/*
|--------------------------------------------------------------------------
| Beheer importpagina
|--------------------------------------------------------------------------
*/

.snooc-import-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.55fr);
    align-items: start;
    gap: 18px;

    margin-top: 18px;
}

.snooc-import-upload-card,
.snooc-import-help-card,
.snooc-import-preview-card {
    min-width: 0;
}

.snooc-import-preview-card {
    margin-top: 18px;
}

/*
|--------------------------------------------------------------------------
| Waarschuwing
|--------------------------------------------------------------------------
*/

.snooc-import-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 16px;
    padding: 15px 17px;

    border: 1px solid #f0d49a;
    border-radius: 14px;

    background: #fffbeb;
    color: #92400e;
}

.snooc-import-warning-icon {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #fef3c7;
    color: #b45309;
}

.snooc-import-warning strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 800;
}

.snooc-import-warning ul {
    margin: 0;
    padding-left: 18px;

    font-size: 12px;
    line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| Dropzone
|--------------------------------------------------------------------------
*/

.snooc-import-dropzone {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 210px;

    padding: 25px;

    border: 2px dashed #dfbdc5;
    border-radius: 15px;

    outline: 0;

    background: #fffafb;
    color: var(--sn-text);

    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.snooc-import-dropzone:hover,
.snooc-import-dropzone:focus-visible,
.snooc-import-dropzone.is-dragging {
    border-color: var(--sn-red);

    background: #fff5f7;

    box-shadow:
        0 0 0 4px rgba(159, 29, 53, 0.07);
}

.snooc-import-dropzone.is-dragging {
    transform: scale(1.005);
}

.snooc-import-dropzone.is-error {
    border-color: #e11d48;

    background: #fff1f2;
}

.snooc-import-dropzone.has-file {
    border-color: #5fbd97;

    background: #f2fff8;
}

.snooc-import-dropzone input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;
    pointer-events: none;
}

.snooc-import-dropzone-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 4px;

    border-radius: 15px;

    background: var(--sn-red-soft);
    color: var(--sn-red);

    font-size: 23px;
}

.snooc-import-dropzone strong {
    font-size: 15px;
    font-weight: 850;
}

.snooc-import-dropzone > span:not(.snooc-import-dropzone-icon) {
    color: var(--sn-muted);

    font-size: 13px;
}

.snooc-import-dropzone small {
    margin-top: 3px;

    color: #9a7d85;

    font-size: 11px;
    font-weight: 650;
}

/*
|--------------------------------------------------------------------------
| Geselecteerd bestand
|--------------------------------------------------------------------------
*/

.snooc-import-selected-file {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 13px;

    border: 1px solid #ccebdc;
    border-radius: 12px;

    background: #f3fff9;
}

.snooc-import-selected-file[hidden] {
    display: none !important;
}

.snooc-import-selected-icon {
    display: flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 10px;

    background: #dcfce7;
    color: #087f5b;
}

.snooc-import-selected-file > div {
    flex: 1 1 auto;
    min-width: 0;
}

.snooc-import-selected-file strong,
.snooc-import-selected-file span {
    display: block;
}

.snooc-import-selected-file strong {
    overflow: hidden;

    color: var(--sn-text);

    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.snooc-import-selected-file div span {
    margin-top: 2px;

    color: var(--sn-muted);

    font-size: 10px;
}

.snooc-import-selected-file button {
    display: flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;
    border-radius: 9px;

    background: transparent;
    color: #9f1239;

    cursor: pointer;
}

.snooc-import-selected-file button:hover,
.snooc-import-selected-file button:focus-visible {
    outline: 0;

    background: #ffe4e6;
}

/*
|--------------------------------------------------------------------------
| Clientfout
|--------------------------------------------------------------------------
*/

.snooc-import-client-error {
    padding: 11px 13px;

    border: 1px solid #fecdd3;
    border-radius: 10px;

    background: #fff1f2;
    color: #be123c;

    font-size: 12px;
    font-weight: 700;
}

.snooc-import-client-error[hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Kolommenlijst
|--------------------------------------------------------------------------
*/

.snooc-import-column-list {
    display: grid;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.snooc-import-column-list li {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 12px;

    border: 1px solid var(--sn-border);
    border-radius: 11px;

    background: #ffffff;
}

.snooc-import-column-list li > span {
    display: flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    background: var(--sn-red-soft);
    color: var(--sn-red);

    font-size: 11px;
    font-weight: 850;
}

.snooc-import-column-list strong,
.snooc-import-column-list small {
    display: block;
}

.snooc-import-column-list strong {
    color: var(--sn-text);

    font-size: 12px;
    font-weight: 800;
}

.snooc-import-column-list small {
    margin-top: 2px;

    color: var(--sn-muted);

    font-size: 10px;
}

.snooc-import-help-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 14px;
    padding: 11px 12px;

    border-radius: 10px;

    background: #f8f4f5;
    color: var(--sn-muted);
}

.snooc-import-help-note i {
    margin-top: 2px;

    color: var(--sn-red);
}

.snooc-import-help-note p {
    margin: 0;

    font-size: 11px;
    line-height: 1.5;
}

.snooc-import-template-button,
.snooc-import-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;

    padding: 9px 13px;

    border: 1px solid var(--sn-border-strong);
    border-radius: 10px;

    background: #ffffff;
    color: var(--sn-red);

    font-size: 11px;
    font-weight: 800;
    text-decoration: none;

    cursor: pointer;
}

.snooc-import-template-button {
    width: 100%;
    margin-top: 14px;
}

.snooc-import-template-button:hover,
.snooc-import-template-button:focus-visible,
.snooc-import-secondary-button:hover,
.snooc-import-secondary-button:focus-visible {
    border-color: #d2a5b0;
    outline: 0;

    background: var(--sn-red-soft);
}

/*
|--------------------------------------------------------------------------
| Samenvatting
|--------------------------------------------------------------------------
*/

.snooc-import-summary {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 10px;

    margin-bottom: 16px;
}

.snooc-import-summary-item {
    padding: 12px 13px;

    border: 1px solid var(--sn-border);
    border-radius: 11px;

    background: #ffffff;
}

.snooc-import-summary-item span,
.snooc-import-summary-item strong {
    display: block;
}

.snooc-import-summary-item span {
    color: var(--sn-muted);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.snooc-import-summary-item strong {
    margin-top: 5px;

    color: var(--sn-text);

    font-size: 17px;
    font-weight: 850;
}

.snooc-import-summary-item.is-valid {
    border-color: #b9ead4;

    background: #f3fff9;
}

.snooc-import-summary-item.is-valid strong {
    color: #087f5b;
}

.snooc-import-summary-item.is-invalid {
    border-color: #fecdd3;

    background: #fff1f2;
}

.snooc-import-summary-item.is-invalid strong {
    color: #be123c;
}

/*
|--------------------------------------------------------------------------
| Previewtabel
|--------------------------------------------------------------------------
*/

.snooc-import-table {
    min-width: 850px;
}

.snooc-import-col-line {
    width: 75px;
}

.snooc-import-col-school {
    width: 27%;
}

.snooc-import-col-board {
    width: 25%;
}

.snooc-import-col-code {
    width: 18%;
}

.snooc-import-col-status {
    width: 30%;
}

.snooc-import-table tbody tr.is-invalid {
    background: #fffafb;
}

.snooc-import-table td small {
    display: block;

    margin-top: 3px;

    color: var(--sn-muted);

    font-size: 10px;
}

.snooc-import-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    min-height: 28px;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;
}

.snooc-import-status.is-valid {
    border: 1px solid #a7e9cc;

    background: #ecfdf5;
    color: #087f5b;
}

.snooc-import-status.is-invalid {
    border: 1px solid #fecdd3;

    background: #fff1f2;
    color: #be123c;
}

.snooc-import-row-errors {
    margin: 7px 0 0;
    padding-left: 17px;

    color: #be123c;

    font-size: 10px;
    font-weight: 650;
    line-height: 1.45;
}

/*
|--------------------------------------------------------------------------
| Previewacties
|--------------------------------------------------------------------------
*/

.snooc-import-preview-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: 17px;
    padding-top: 15px;

    border-top: 1px solid var(--sn-border);
}

.snooc-import-preview-actions form {
    margin: 0;
}

.snooc-import-blocked {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 40px;

    padding: 9px 13px;

    border: 1px solid #fecdd3;
    border-radius: 10px;

    background: #fff1f2;
    color: #be123c;

    font-size: 11px;
    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Laden
|--------------------------------------------------------------------------
*/

.snooc-import-page .is-loading i {
    animation:
        snooc-import-spin
        0.8s
        linear
        infinite;
}

@keyframes snooc-import-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Import tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {
    .snooc-import-layout {
        grid-template-columns: 1fr;
    }

    .snooc-import-summary {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

/*
|--------------------------------------------------------------------------
| Import mobiel
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    .snooc-import-table {
        min-width: 0;
    }

    .snooc-import-dropzone {
        min-height: 180px;

        padding: 20px 15px;
    }

    .snooc-import-preview-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .snooc-import-preview-actions form,
    .snooc-import-preview-actions
    .snooc-beheer-primary-button,
    .snooc-import-secondary-button,
    .snooc-import-blocked {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .snooc-import-summary {
        grid-template-columns: 1fr;
    }

    .snooc-import-dropzone-icon {
        width: 46px;
        height: 46px;

        font-size: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Microsoft SSO-configuratie
|--------------------------------------------------------------------------
*/

.snooc-sso-settings-page {
    max-width: 1180px;
}

.snooc-sso-settings-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 720px)
        minmax(250px, 330px);
    align-items: start;
    gap: 18px;
}

.snooc-sso-settings-main,
.snooc-sso-info-column {
    display: grid;
    gap: 18px;

    min-width: 0;
}

.snooc-sso-settings-card,
.snooc-sso-bestuur-card {
    width: 100%;
    min-width: 0;
}

.snooc-sso-settings-form {
    gap: 20px;
}

/*
|--------------------------------------------------------------------------
| Tenant / Client grid
|--------------------------------------------------------------------------
*/

.snooc-sso-field-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/*
|--------------------------------------------------------------------------
| SSO aan/uit
|--------------------------------------------------------------------------
*/

.snooc-sso-enabled-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 15px 16px;

    border: 1px solid var(--sn-border);
    border-radius: 13px;

    background: #fffafb;
}

.snooc-sso-enabled-label {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
    margin: 0 !important;

    cursor: pointer;
}

.snooc-sso-enabled-label > span:last-child {
    min-width: 0;
}

.snooc-sso-enabled-label strong,
.snooc-sso-enabled-label small {
    display: block;
}

.snooc-sso-enabled-label strong {
    color: var(--sn-text);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.snooc-sso-enabled-label small {
    margin-top: 3px;

    color: var(--sn-muted);

    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.snooc-sso-checkbox-wrap {
    position: relative;

    display: block;
    flex: 0 0 42px;

    width: 42px;
    height: 24px;
}

.snooc-sso-checkbox-wrap input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.snooc-sso-checkbox-ui {
    position: absolute;
    inset: 0;

    border-radius: 999px;

    background: #d9cdd0;

    transition:
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.snooc-sso-checkbox-ui::after {
    content: '';

    position: absolute;
    top: 3px;
    left: 3px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.18s ease;
}

.snooc-sso-checkbox-wrap
input:checked +
.snooc-sso-checkbox-ui {
    background: var(--sn-red);
}

.snooc-sso-checkbox-wrap
input:checked +
.snooc-sso-checkbox-ui::after {
    transform: translateX(18px);
}

.snooc-sso-checkbox-wrap
input:focus-visible +
.snooc-sso-checkbox-ui {
    box-shadow:
        0 0 0 4px rgba(159, 29, 53, 0.12);
}

/*
|--------------------------------------------------------------------------
| Microsoft badge
|--------------------------------------------------------------------------
*/

.snooc-sso-provider-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;

    min-height: 32px;

    padding: 6px 10px;

    border: 1px solid #ddd5d7;
    border-radius: 999px;

    background: #ffffff;
    color: #58474c;

    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.snooc-sso-provider-badge i {
    color: var(--sn-red);

    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Secretstatus
|--------------------------------------------------------------------------
*/

.snooc-sso-secret-status {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    margin-top: 8px;

    color: var(--sn-muted);

    font-size: 10.5px;
    line-height: 1.45;
}

.snooc-sso-secret-status i {
    margin-top: 2px;
}

.snooc-sso-secret-status.is-set {
    color: #087f5b;
}

/*
|--------------------------------------------------------------------------
| Acties
|--------------------------------------------------------------------------
*/

.snooc-sso-actions {
    display: flex;
    justify-content: flex-end;

    padding-top: 2px;
}

.snooc-sso-actions
.snooc-beheer-primary-button {
    width: auto;
    min-width: 220px;
}

/*
|--------------------------------------------------------------------------
| Informatiekaarten
|--------------------------------------------------------------------------
*/

.snooc-sso-info-card,
.snooc-sso-warning-card,
.snooc-sso-checklist-card {
    padding: 17px;

    border: 1px solid #ead7dc;
    border-radius: 14px;

    background: #fffafb;

    box-shadow:
        0 8px 22px rgba(79, 13, 27, 0.05);
}

.snooc-sso-info-card,
.snooc-sso-warning-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.snooc-sso-info-icon,
.snooc-sso-warning-icon,
.snooc-sso-checklist-header > span {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #f8e9ed;
    color: var(--sn-red);

    font-size: 14px;
}

.snooc-sso-info-card strong,
.snooc-sso-warning-card strong,
.snooc-sso-checklist-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--sn-text);

    font-size: 13px;
    font-weight: 800;
}

.snooc-sso-info-card p,
.snooc-sso-warning-card p,
.snooc-sso-checklist-card p {
    margin: 0;

    color: var(--sn-muted);

    font-size: 11.5px;
    line-height: 1.55;
}

/*
|--------------------------------------------------------------------------
| Checklist
|--------------------------------------------------------------------------
*/

.snooc-sso-checklist-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 13px;
}

.snooc-sso-checklist-card ol {
    display: grid;
    gap: 8px;

    margin: 0;
    padding-left: 20px;

    color: #5f4a50;

    font-size: 11px;
    line-height: 1.5;
}

.snooc-sso-warning-card {
    border-color: #f0d49a;

    background: #fffbeb;
}

.snooc-sso-warning-icon {
    background: #fef3c7;
    color: #b45309;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 950px) {
    .snooc-sso-settings-layout {
        grid-template-columns: 1fr;
    }

    .snooc-sso-info-column {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .snooc-sso-warning-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .snooc-sso-field-grid {
        grid-template-columns: 1fr;
    }

    .snooc-sso-info-column {
        grid-template-columns: 1fr;
    }

    .snooc-sso-warning-card {
        grid-column: auto;
    }

    .snooc-sso-enabled-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .snooc-sso-actions {
        justify-content: stretch;
    }

    .snooc-sso-actions
    .snooc-beheer-primary-button {
        width: 100%;
        min-width: 0;
    }
}

/*
|--------------------------------------------------------------------------
| SSO callback URL
|--------------------------------------------------------------------------
*/

.snooc-sso-callback-list-item {
    margin-top: 3px;
}

.snooc-sso-callback-list-item > span {
    display: block;

    margin-bottom: 9px;
}

.snooc-sso-callback-copy {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: stretch;
    gap: 7px;

    width: 100%;

    margin-top: 7px;
}

.snooc-sso-callback-copy code {
    display: flex;
    align-items: center;

    min-width: 0;
    min-height: 39px;

    padding:
        8px
        10px;

    border: 1px solid #ead7dc;
    border-radius: 9px;

    background: #ffffff;
    color: #7c2638;

    font-family:
        Consolas,
        Monaco,
        monospace;

    font-size: 9.5px;
    line-height: 1.4;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.snooc-sso-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 39px;

    margin: 0;
    padding:
        8px
        11px;

    border: 1px solid #dfbdc5 !important;
    border-radius: 9px !important;

    outline: 0;

    background: #ffffff !important;
    color: var(--sn-red) !important;

    font-family: inherit;
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.snooc-sso-copy-button:hover,
.snooc-sso-copy-button:focus-visible {
    border-color: var(--sn-red) !important;

    outline: 0;

    background: var(--sn-red-soft) !important;
}

.snooc-sso-copy-button.is-copied {
    border-color: #a7f3d0 !important;

    background: #ecfdf5 !important;
    color: #047857 !important;
}

@media (max-width: 480px) {

    .snooc-sso-callback-copy {
        grid-template-columns: 1fr;
    }

    .snooc-sso-copy-button {
        width: 100%;
    }
}

/* Unified beheer additions */
.snooc-beheer-inline-field select{width:100%;min-height:41px;border:1px solid transparent;border-radius:10px;background:transparent;padding:8px 10px;color:var(--sn-text);font-weight:700}
.snooc-beheer-inline-field select:hover,.snooc-beheer-inline-field select:focus{border-color:var(--sn-red);background:#fff;outline:none;box-shadow:0 0 0 4px rgba(159,29,53,.10)}
.snooc-beheer-field>input,.snooc-beheer-field>select,.snooc-beheer-field>textarea{width:100%;min-height:48px;border:1px solid var(--sn-border-strong);border-radius:13px;padding:11px 13px;background:#fff;color:var(--sn-text)}
.snooc-beheer-field>textarea{min-height:120px;resize:vertical}
.snooc-beheer-settings-card{max-width:820px}
.snooc-beheer-table tbody tr[hidden],.snooc-beheer-table tbody tr.is-filtered-out{display:none!important}
@media(max-width:760px){.snooc-beheer-table tbody tr:not([hidden]){display:grid!important}.snooc-beheer-table tbody td{grid-template-columns:minmax(105px,34%) minmax(0,1fr)!important}.snooc-beheer-table tbody td:first-child{position:static!important}.snooc-beheer-inline-field select{border-color:var(--sn-border-strong);background:#fff}}
