.bam-club-selector-widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.club-selector__title {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 500;
    font-family:"Acumin Condensed", Sans-serif;
    margin:0
}

.club-selector__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.club-selector__selects {
    display: flex;
    gap: 0.625rem;
}

.club-selector__field {
    flex: 1;
}

.club-selector__button-container .btn-ball {
    min-width: 200px !important; /* Sobreescribimos el min-width del botón solo cuando está dentro del selector */
}

.club-selector__zone,
.club-selector__club {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--e-global-color-8fcf007, #bfbfbf);
    border-radius: 25px;
    background: #ffffff;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    font-family:"Acumin Condensed", Sans-serif;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

.club-selector__zone:focus,
.club-selector__club:focus {
    outline: none;
    border-color: var(--e-global-color-primary,#064cea);
}

.club-selector__zone:disabled,
.club-selector__club:disabled {
    color:var(--e-global-color-101e3f0,#7f7f7f);
    cursor: not-allowed;
}

.club-selector__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Estilos específicos para el botón en el editor */
.elementor-editor-active .club-selector__button {
    background: #000 !important;
    color: white !important;
    border-radius: 4px !important;
    font-family: inherit !important;
    padding: 0.75rem 2rem !important;
}

.club-selector__button:hover:not(.disabled):not([disabled]) {
    background: #333;
    transform: translateY(-1px);
}

.club-selector__button.disabled,
.club-selector__button[disabled] {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 576px) {
    .club-selector__selects {
        flex-direction: column;
    }
}