/**
 * Custom form styling for SherryTransfer
 */

/* Textarea styling to match input fields */
.booking-form .form-field textarea {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    padding: 10px 20px;
    font-size: 17px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Focus state for textarea */
.booking-form .form-field textarea:focus {
    border-color: #6c757d;
    outline: none;
}

/* Select styling for multiple select */
.booking-form .select2-container {
    width: 100% !important;
}

.booking-form .select2-container .select2-selection--multiple {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    border: 1px solid #333;
    min-height: 50px;
}

.booking-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #444;
    border: 1px solid #555;
    color: #fff;
    padding: 4px 8px;
    margin: 4px;
}

.booking-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ccc;
    margin-right: 5px;
}

.booking-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

.booking-form .select2-container--default .select2-search--inline .select2-search__field {
    color: #fff;
    margin-top: 8px;
}

/* Dropdown styling */
.select2-dropdown {
    background-color: #333;
    border: 1px solid #444;
}

.select2-container--default .select2-results__option {
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #555;
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #444;
}
