#repair-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

p {
    text-align: center;
    display: block;
    font-weight: bold;
    margin-top: 5px;
    padding: 5px;
}

h3, h4 {
    color: #333;
    margin-bottom: 0.5em;
    text-align: center;
    
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 6px;
}

.form-group label {
    display: inline-block;
    font-weight: bold;
    margin-top: 5px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    /* align-items: center; */
}

.radio-group div {
    display: flex;
    align-items: center;
    margin-bottom: 6px; /* Add spacing between each radio option */
}

.radio-group label {
    margin: 0;
    font-weight: normal;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}



input[type="submit"],
button {
    padding: 10px 20px;
    color: #fff;
    background-color: #6c5ce7;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2f00ff;
}

select {
    width: 100%;
}

footer{
    display: none;
}