* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* General body styling */
main {
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
    gap: 30px;
}

/* Form container styling */
main form {
    display: grid;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    gap: 1rem;
}

main h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Styling for service options */
#service-options {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 15px; */
}

#service-options div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#service-options input[type="checkbox"] {
    margin-right: 10px;
}

/* Disabled checkbox style */
main input[type="checkbox"]:disabled + label {
    color: #ccc;
}

/* Label styling */
main label {
    font-size: 16px;
    color: #333;
}

/* File input styling */
main input[type="file"] {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Button styling */
main button {
    width: 100%;
    padding: 10px 0;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

main button:hover {
    background-color: #0056b3;
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
    main form {
        padding: 15px;
    }

    main h1 {
        font-size: 20px;
    }

    main label {
        font-size: 14px;
    }

    main button {
        font-size: 14px;
    }
}
