
#prowash-booking {
    max-width: 400px;
    margin: 20px auto;
}

#prowash-booking select, #prowash-booking button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 16px;
}

/* Bilmodel dropdown – præcis samme stil som custom select */
#car-model {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    font-size: 16px;
    padding: 8px;
}

/* Custom dropdown til bilmærke */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    margin-bottom: 10px;
}

.custom-select-trigger {
    padding: 8px;
    font-size: 16px;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-options {
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    z-index: 9999;
    width: 100%;
    background: white;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.custom-select-wrapper.open .custom-options {
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    z-index: 9999;
    width: 100%;
    background: white;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    display: block;
}

.custom-option {
    padding: 12px 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: black;
    background-color: white;
}

.custom-option:hover {
    background-color: #eee;
}

.option-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
