/* Apply styles to the parent form */
#repair-service-form {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    margin: auto;
}

/* Headings */
#repair-service-form h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}


/* Labels */
#repair-service-form label {

    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

/* Inputs and Selects */
#repair-service-form input,
#repair-service-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.2s ease-in-out;
}

#repair-service-form input:focus,
#repair-service-form select:focus {
    border-color: #30D5C7;
    outline: none;
    background: #ffffff;
}

/* Buttons */
.form-step button {
    width: inline-auto;
}
#repair-service-form button {
    width: 48%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Next Step Button */
#repair-service-form .next-step {
    background: #30D5C7; /* Blue */
    color: white;
}

#repair-service-form .next-step:hover {
    background: #0056b3;
}

/* Previous Step Button */
#repair-service-form .previous-step {
    background: #BAC4C6; /* Gray */
    color: white;
}

#repair-service-form .previous-step:hover {
    background: #0000;
    color: black;
}

/* Confirm Button */
#repair-service-form #confirm-form {
    background: #50AFE4; /* Green */
    color: white;
}

#repair-service-form #confirm-form:hover {
    background: #0000;
}

/* Price Display */
#repair-service-form #price-display {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 500px) {
    #repair-service-form {
        width: 90%;
    }
}
