.form-container { background-color: #ffc600; padding: 29px 35px !important; border-radius: 0px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); text-align: center; margin: 0 auto; } 
.form-container h2 { font-size: 26px; margin: 0; } 
.form-container form select, .form-container form input[type=text], .form-container form input[type=tel] { background: #fff; border: none; border-radius: 0px; height: 40px; padding: 0px 15px; color: #222; margin-bottom: 10px; font-size: 15px; font-weight: 600; }
.form-container form input[type=text]::placeholder, .form-container form input[type=tel]::placeholder { color: #222; }
.form-container form button[type=submit] { background: #000; border-radius: 0px; height: 40px; margin-top: 5px; }
.form-container form button[type=submit]:hover { background: #fff; color: #000; }
.ratings div p{ color: #222; }
h2 { margin-bottom: 10px; font-size: 20px; } 
p { margin: 5px 0 20px; color: #666; font-size: 14px; }
form { display: flex; flex-direction: column; } 
select, input[type="text"], input[type="tel"] { margin-bottom: 15px; padding: 10px; font-size: 14px; border: 1px solid #ccc; border-radius: 5px; } 
button { background-color: #d32f2f; color: white; padding: 10px; font-size: 16px; border: none; border-radius: 5px; cursor: pointer; margin-top: 10px; } 
button:hover { background-color: #b71c1c; } 
.ratings { display: grid; justify-content: space-between; margin-top: 16px; grid-template-columns: 50% 1fr; grid-gap: 15px; } 
.ratings div { background: #fff; padding: 10px 10px; border-radius: 10px; display: grid; align-items: start; } 
.form-container p { color: #000000; line-height: normal; font-size: 15px; margin: 10px 0px; font-weight: 500; }
.rating, .customers { font-size: 14px; text-align: center; } 
.rating span, .customers span { font-size: 18px; font-weight: bold; display: block; color: #000; } 
.modal { display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 9999; } 
.model p { font-size: 17px; font-weight: 600; border-radius: 27px; border: 2px dotted #ccc; padding: 3px; } 
a.back-button { cursor: pointer; } 
.modal h3 { text-align: center; } 
.modal-content { background-color: white; padding: 20px; border-radius: 10px; width: 50%; text-align: left; position: relative; } 
.brand p { font-size: 14px; font-weight: 600; color: #000;line-height: 1rem; } 
.loader { border: 4px solid #f3f3f3; /* Light grey */ border-top: 4px solid #3498db; /* Blue */ border-radius: 50%; width: 24px; height: 24px; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.close { position: absolute; top: 10px; right: 10px; font-size: 18px; cursor: pointer; } 
.brand-container { display: flex; flex-wrap: wrap; gap: 5px; justify-content: space-around; margin-top: 20px; }
.brand { text-align: center; cursor: pointer; width: 120px; box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 5px 0px; } 
.brand img { width: 50px; height: auto; }
.sel-model { display: flex; flex-direction: row; justify-content: space-around; }
.sel-model>div { font-weight: 600; color: #000; margin-top: 10px; margin-bottom: 10px; }
/****** CSS for mobile *****/
@media only screen and (max-width: 600px) {
.modal-content { width: 90%; height: 63%; overflow: scroll; }
.brand {width: 100px; }
input#brandSearch, input#modelSearch { margin: 15px 0 15px 0; }
#variantContainer img { margin-top: 10px; }
}