body.elementor-page-17:not(.elementor-motion-effects-element-type-background), body.elementor-page-17 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#D7DFC0;}/* Start custom CSS */.form-heading {
    color: darkgreen;
    text-align: center;
}

/* General form wrapper */
.check-result-form {
    max-width: 600px;
    margin: 50px auto;
    background: #EAF1DD;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

/* Form element spacing */
.check-result-form form > * {
    margin-bottom: 20px;
}

/* Label styles - dark green color */
.check-result-form label {
    font-weight: 600;
    color: #145214; /* Dark green */
}

/* Input, select styling with dark green border */
.check-result-form input[type="text"],
.check-result-form select {
    padding: 10px 12px;
    border: 1px solid #145214; /* Dark green border */
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.check-result-form input[type="text"]:focus,
.check-result-form select:focus {
    border-color: #0d350d; /* Darker green on focus */
    outline: none;
}

/* Remove/hide level label */
.check-result-form .level-row label[for="level"] {
    display: none;
}

/* Radio buttons container centered */
.check-result-form .radio-group {
    display: flex;
    justify-content: center;  /* Center horizontally */
    gap: 30px;
    flex-wrap: wrap;
}

/* Radio option labels - bold, dark black */
.check-result-form .radio-group label {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #000000; /* Dark black */
    white-space: nowrap;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
}

/* Hide default radio input */
.check-result-form .radio-group input[type="radio"] {
    display: none;
}

/* Custom styled circular radio */
.check-result-form .radio-group label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border: 2px solid #145214; /* Dark green */
    border-radius: 50%; /* Circle */
    background-color: white;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 0 2px #e6e6e6 inset; /* Soft inner shadow */
    position: relative;
}

/* Checked state - green filled circle */
.check-result-form .radio-group input[type="radio"]:checked + label::before {
    background-color: #145214;
    border-color: #145214;
    box-shadow: 0 0 0 2px white inset;
}

/* White checkmark inside circle */
.check-result-form .radio-group input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 2;
}

/* Submit button - dark green background */
.check-result-form button[type="submit"] {
    background-color: #145214; /* Dark green */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}/* End custom CSS */