body.paease-mobile-select-open {
    overflow: hidden;
}

.paease-mobile-select-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.45);
}

.paease-mobile-select-sheet {
    width: 100%;
    max-width: 22rem;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

.paease-mobile-select-title {
    padding: 1rem 1.25rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    border-bottom: 1px solid #f1f3f5;
}

.paease-mobile-select-options {
    max-height: calc(80vh - 3.5rem);
    overflow-y: auto;
    padding: 0.5rem 0;
}

.paease-mobile-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    color: #343a40;
}

.paease-mobile-select-option:active {
    background: #f8f9fa;
}

.paease-mobile-select-option input[type="radio"] {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    margin: 0;
}

.paease-mobile-select-option span {
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.35;
}

@media (min-width: 992px) {
    .paease-mobile-select-overlay {
        display: none !important;
    }
}