/* General form container styling */
#gammill-estimator-form {
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Heading styling */
#gammill-estimator-form h2 {
    font-size: 42px; /* Increased from 28px */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Paragraph text styling */
#gammill-estimator-form p {
    font-size: 24px; /* Increased from 16px */
    color: #333;
    margin-bottom: 20px;
}

/* Input fields styling */
#gammill-estimator-form input[type="text"],
#gammill-estimator-form select,
#gammill-estimator-form input[type="file"] {
    width: 100%;
    padding: 15px; /* Increased padding */
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 44px; /* Increased from 16px /24px */
}

/* Button styling */
#gammill-estimator-form button {
    background-color: #f9a825; /* Matching orange color */
    color: #fff;
    font-size: 24px; /* Increased from 18px */
    font-weight: bold;
    padding: 15px 25px; /* Increased padding */
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin: 15px 0;
    width: 100%;
    max-width: 320px;
    display: inline-block;
    text-transform: uppercase;
}

/* Button hover effect */
#gammill-estimator-form button:hover {
    background-color: #e68900;
}

/* Ensure images always appear below question text */
.gammill-question-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Ensure answer option images stay aligned */
.gammill-options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gammill-option {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px; /* Increased from default */
}

.gammill-option img {
    max-width: 120px; /* Increased size */
    height: auto;
    display: inline-block;
}

/* Radio button styling */
#gammill-estimator-form input[type="radio"] {
    margin-right: 15px; /* Increased spacing */
    transform: scale(1.5); /* Increased size */
}

/* Error and success message styling */
#gammill-estimator-form .error-message {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

#gammill-estimator-form .success-message {
    color: green;
    font-size: 24px;
    font-weight: bold;
}
