.sb-select-all-trigger:hover,
.sb-clear-all-trigger:hover {
    cursor: pointer !important;
}

.sb-sections-form {
    --bg: transparent;
    --text: #d8cb90;
    --muted: #b8ad7b;
    --border: #d8cb90;
    --badge: #9f9566;
    --checkbox-size: 22px;

    background: var(--bg);
    color: var(--text);
    padding: 28px 34px;
    border-radius: 8px;
    max-width: 1100px;
    font-family: "TeX Gyre Adventor", sans-serif;
}

.sb-group {
    margin: 0 0 26px;
}

.sb-group:last-child {
    margin-bottom: 0;
}

.sb-section-title {
    font-size: 15px;
    font-weight: 500;
    color: #f2f0e8;
    margin: 0 0 20px;
}

.sb-actions {
    display: flex;
    gap: 18px;
    margin: 0 0 24px;
}

.sb-actions a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 15px;
}

.sb-option {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px 34px;
    flex-wrap: wrap;
}

.sb-option-stack {
    display: block;
}

.sb-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text);
}

.sb-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sb-box {
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    border: 2px solid var(--border);
    border-radius: 4px;
    flex: 0 0 var(--checkbox-size);
    position: relative;
    box-sizing: border-box;
}

.sb-checkbox input:checked + .sb-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 7px;
    height: 13px;
    border: solid var(--border);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.sb-checkbox input:focus-visible + .sb-box {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.sb-label-text {
    font-weight: 300;
    letter-spacing: 0.1px;
}

.sb-badge {
    font-size: 14px;
    color: var(--badge);
    font-weight: 500;
    margin-left: 6px;
}

.sb-years {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin: 18px 0 0 54px;
}

.sb-year {
    font-size: 16px;
}

.sb-year .sb-label-text {
    font-weight: 400;
}

@media (max-width: 767px) {
    .sb-sections-form {
        padding: 22px 20px;
    }

    .sb-option {
        margin-left: 14px;
    }

    .sb-checkbox {
        font-size: 16px;
    }

    .sb-years {
        margin-left: 36px;
        gap: 14px 18px;
    }

    .sb-year {
        min-width: 80px;
    }

    .sb-actions {
        flex-wrap: wrap;
        gap: 12px;
    }
}