body {
    font-family: "Rubik", sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
}

.quote-container {
    width: 450px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: #ddd;
    border-radius: 50%;
    color: black;
    margin: 0 10px;
}

.step-circle.active {
    background: #ff9800;
    color: white;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

label {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background: #f9f9f9;
    margin-bottom: 15px;
    outline: none;
}

.error-border {
    border: 2px solid red !important;
}

button {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.next-btn {
    background: #ff9800;
    color: white;
}

.next-btn:hover {
    background: #e68900;
}

.prev-btn {
    background: #ccc;
}

.submit-btn {
    background: #28a745;
    color: white;
}

.submit-btn:hover {
    background: #218838;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.button-group button {
    flex: 1;
    padding: 12px 20px;
}

.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    text-align: center; /* Center the loader */
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f2f2f2;
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1504a5;
    border-radius: 50%;
    width: 24px; /* Smaller size to fit within dropdown */
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 10px auto; /* Center the loader with some spacing */
    display: inline-block; /* Ensure it behaves as an inline element */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.transport-type-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.transport-type-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
}

.radio-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-grow: 1;
}

.radio-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    appearance: none;
    border: 2px solid #007bff;
    border-radius: 50%;
    outline: none;
    position: relative;
}

.radio-label input[type="radio"]:checked {
    background-color: #007bff;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}