/* Global Select2 multi-select "Done" footer — works for every select2 dropdown on the site. */
.select2-done-footer {
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 8px 10px;
    background: #fff;
    border-top: 1px solid #e4e9f3;
}

.select2-done-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #00453E;
    border-radius: 8px;
    background: #00453E;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    touch-action: manipulation;
}

.select2-done-btn:hover,
.select2-done-btn:focus {
    background: #013129;
    outline: none;
}

.select2-done-btn .select2-done-btn-x {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 480px) {
    .select2-done-footer {
        padding: 10px 12px;
    }

    .select2-done-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 14px;
    }
}
