.booking-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Lora', serif;
}

.booking-selector h2 {
    font-family: 'Lora', serif !important;
    font-weight: 500 !important;
    font-size: 30px;
    margin-bottom: 0.5rem;
}

.booking-selector p {
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px;
    color: #262626;
    padding-bottom: 15px !important;
}

.booking-selector__type {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1em;
}

.booking-selector__type .selector-btn {
    background-color: #B0A5D8;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 7px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.booking-selector__type .selector-btn.is-active,
.booking-selector__type .selector-btn:hover {
    background: #6E60A3;
    transform: translateY(-1px);
}

.booking-selector__service {
    width: 100%;
    max-width: 300px;
    position: relative;
    margin: 0 auto;
}

.booking-selector__service .service-dropdown-button, 
.booking-selector__service .service-dropdown-button:focus {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #B0A5D8;
    border-radius: 7px;
    background-color: #B0A5D8;
    color: white;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.booking-selector__service .service-dropdown-button:hover {
    background-color: #6E60A3;
}

.arrow {
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.service-dropdown-button[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.service-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    margin: 5px 0 0 0;
    padding: 0;
    list-style: none;
    border: 1px solid #6E60A3;
    border-radius: 7px;
    background: white;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-dropdown-list li a {
    display: block;
    padding: 12px 20px !important;
    color: #6E60A3;
    text-decoration: none;
    border-bottom: 1px solid #A69E96;
    font-size: 16px !important;
    font-family: 'Lora', serif !important;
    font-weight: 500 !important;
}

.service-dropdown-list li:last-child a {
    border-bottom: none;
}

.service-dropdown-list li a:hover {
    background-color: #6E60A3;
    color: white;
}
