.psm-booth-selection {
    margin: 20px 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}

.psm-booth-selection label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--bs-headings-font-family, 'Clash Display', sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: #111;
}

.psm-booth-selection label strong {
    font-weight: inherit;
}

.psm-booth-selection select {
    width: 100%;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    line-height: 1.3;
    min-height: 48px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-position: calc(100% - 16px) center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    font-size: 1rem;
    box-sizing: border-box;
}

.psm-booth-selection select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.psm-booth-selection select:required:invalid {
    border-color: #dc3232;
}

/* Responsive */
@media (max-width: 768px) {
    .psm-booth-selection {
        margin: 15px 0;
        padding: 12px;
    }
}