

/* Label Styling */
.col-form-label {
    font-weight: 600;
    color: #333;
}

/* Radio Button Styling */
.styled-radio {
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
}

.styled-radio input[type="radio"] {
    display: none;
}

.styled-radio span {
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: #555;
}

.styled-radio span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #417ad7;
    border-radius: 50%;
    background-color: #fff;
}

.styled-radio input[type="radio"]:checked + span::before {
    background-color: #417ad7;
    border-color: #417ad7;
}

.styled-radio input[type="radio"]:checked + span::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}

/* Select Dropdown Styling */
.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #417ad7;
    box-shadow: 0 0 5px #417ad7;
}

/* Datepicker Input Styling */
.datepicker {
    cursor: pointer;
}

/* Spinner Buttons Styling */
.spinner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px; /* Adjust width as needed */
}

.spinner-container .btn {
    background-color: #417ad7;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.spinner-container .btn:hover {
    background-color: #0056b3;
}

.spinner-container .input-number {
    width: 250px; /* Fixed width for the input */
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
    font-size: 14px;
}

/* Vehicle Section Styling */
.select-sub {
    margin-top: 20px;
}

.select-sub span {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

/* Submit Button Styling */
.theme-btn-s2 {
    background-color: #417ad7;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.theme-btn-s2:hover {
    background-color: #417ad7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .col-md-2, .col-md-5, .col-md-10 {
        width: 100%;
        margin-bottom: 10px;
    }

    .spinner-container {
        justify-content: center;
    }
}