.locations-block {
    padding-bottom: var(--spacing-120);
}

.locations-list {
    max-width: 1400px;
    margin: 0 auto;
}

.location-item {
    padding-block: var(--spacing-medium);
    border-bottom: 1px solid #000;
}

.location-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.location-email {
    font-size: 20px;
}

.locations-more {
    margin-top: var(--spacing-large);
}

/* FILTER STYLES */

.locations-filter {
    display: flex;
    justify-content: center;
}

.custom-dropdown {
    position: relative;
    width: 200px;
    background: var(--Red);
    color: white;
    font-weight: 500;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--Red);
    border: none;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    background: var(--White);
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #4D4E50 #DADADA;
    height: 0;
    border: 0;
    transition: height 0.3s ease, border 0.3s ease;
}

.custom-dropdown.open .dropdown-options {
    height: 220px;
    border: 1px solid #3C4B54;
    border-top: none;
}

.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #DADADA;
    border-radius: 3px;
    margin: 15px 0;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #4D4E50;
    border-radius: 3px;
}

.dropdown-option {
    cursor: pointer;
    color: var(--Black);
    font-weight: 400;
    padding: 12px 16px;
}

.dropdown-option.selected {
    background: #e7e7e7;
    font-weight: 700;
}
