.opbcf-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
    background: #ffd700;
}

.opbcf-wrapper .opbcf-field {
    min-width: 170px;
}

.opbcf-wrapper select {
    width: 100%;
    min-height: 46px;
    padding: 10px 38px 10px 18px;
    border: 0;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.opbcf-wrapper .opbcf-coach-dropdown {
    position: relative;
}

.opbcf-wrapper .opbcf-coach-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 10px 18px;
    border: 0;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.opbcf-wrapper .opbcf-coach-arrow {
    width: 9px;
    height: 9px;
    margin-left: 16px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-2px);
}

.opbcf-wrapper .opbcf-coach-dropdown.is-open .opbcf-coach-arrow {
    transform: rotate(-135deg) translateY(-2px);
}

.opbcf-wrapper .opbcf-coach-menu {
    position: absolute;
    z-index: 9999;
    top: calc(100% + 7px);
    left: 0;
    width: max(100%, 230px);
    padding: 10px;
    border-radius: 16px;
    background: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.opbcf-wrapper .opbcf-coach-search {
    width: 100%;
    min-height: 42px;
    margin-bottom: 8px;
    padding: 9px 16px;
    border: 2px solid #111;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}

.opbcf-wrapper .opbcf-coach-search:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.opbcf-wrapper .opbcf-coach-options {
    max-height: 260px;
    overflow-y: auto;
}

.opbcf-wrapper .opbcf-coach-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.opbcf-wrapper .opbcf-coach-option[hidden] {
    display: none !important;
}

.opbcf-wrapper .opbcf-coach-option:hover,
.opbcf-wrapper .opbcf-coach-option.is-selected {
    background: #ffd700;
    color: #111;
}

.opbcf-wrapper select:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.opbcf-wrapper .opbcf-clear {
    min-height: 46px;
    padding: 10px 22px;
    border: 2px solid #111;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.opbcf-wrapper .opbcf-clear:hover {
    background: #111;
    color: #ffd700;
}

.opbcf-wrapper .opbcf-count,
.opbcf-wrapper .opbcf-no-results {
    width: 100%;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    color: #111;
}

.opbcf-wrapper .opbcf-no-results {
    padding: 16px;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 767px) {
    .opbcf-wrapper .opbcf-field {
        width: calc(50% - 7px);
        min-width: 0;
    }

    .opbcf-wrapper select {
        font-size: 12px;
    }
}
