body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eef2f5;
    color: #333;
    line-height: 1.6;
}

/* Center content */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styling for each dropdown section */
.dropdown-container {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

select,
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

select:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #007BFF;
}

#carList {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
}

#carList .car-option {
    padding: 10px;
    cursor: pointer;
}

#carList .car-option:hover {
    background-color: #f0f0f0;
}

#carSearch {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

#carSearch:focus {
    outline: none;
    border-color: #007BFF;
}

#carList .car-option.hidden {
    display: none;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
}

.dropdown-button {
    width: 100%;
    padding: 10px;
    text-align: left;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item.selected {
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
}

/* General Improvements */
select:hover,
input[type="text"]:hover,
.dropdown-button:hover {
    border-color: #0056b3;
    background-color: #f8f9fa;
}

select:focus,
input[type="text"]:focus,
.dropdown-button:focus {
    outline: none;
    border-color: #007BFF;
}