.elementor-242 .elementor-element.elementor-element-4d424af{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-53ed11b *//* Base styles for the screening tool */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top for longer content */
    min-height: 100vh;
}

/* Container for the Screener */
.screener-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px; /* Max width for readability */
    width: 100%;
}

/* Headings - Tailwind classes are used directly in HTML for h1, h2, h3 for most styling */
/* These are fallback/additional custom styles if needed, or for elements not covered by Tailwind */
h1 {
    /* Tailwind classes handle font-size, color, etc. in HTML */
}
h2 {
    /* Tailwind classes handle font-size, color, border, etc. in HTML */
}
h3 {
    /* Tailwind classes handle font-size, color, etc. in HTML */
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* Strong/Bold text for emphasis - Tailwind classes handle this in HTML */
/* strong { } */

/* Buttons (for navigation) */
.btn {
    background-color: #3498db; /* Default blue for buttons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Form Elements */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    font-family: 'Arial', sans-serif; /* Consistency */
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Radio/Checkbox groups for better readability */
.radio-group label, .checkbox-group label {
    display: inline-flex;
    align-items: center;
    margin-right: 1.5rem; /* More space between options */
    margin-bottom: 0.5rem;
    font-weight: normal; /* Labels within groups don't need to be bold */
}
.radio-group input[type="radio"], .checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1); /* Slightly larger radio/checkbox for easier clicking */
}

.form-group {
    margin-bottom: 20px;
}

/* Utility for screen reader only text - Tailwind's sr-only utility should cover this */
/* .sr-only { } */

/* Specific styling for observation sections in Anxiety */
.observation-section {
    background-color: #f9fafb; /* Light background for observation areas */
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-color: #bfdbfe; /* Lighter blue border */
}
.observation-instructions {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    border-left: 4px solid #60a5fa; /* Medium blue for instruction border */
    padding-left: 0.75rem;
}
.score-input {
    width: 80px; /* Smaller width for score inputs */
    text-align: center;
}

/* Section 5 specific styles (Findings & Recommendations) */
.recommendation-box {
    background-color: #e0f2fe; /* Very light blue for recommendation areas */
    border-left: 5px solid #3b82f6; /* Stronger blue for left border */
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.recommendation-box h3 {
    color: #1e3a8a; /* Darker blue for heading */
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Signature Styling */
.signature {
    text-align: center;
    font-size: 0.8em;
    color: #555;
    margin-top: 3rem; /* Spacing from content above */
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}


/* --- Print Styles for A4 Page Breaks --- */
@media print {
    body {
        background-color: #fff; /* White background for print */
        padding: 0;
        margin: 0;
        color: #000; /* Black text for print */
        -webkit-print-color-adjust: exact; /* Ensure background colours print */
        print-color-adjust: exact;
        font-size: 11pt; /* Adjust base font size for print */
    }

    .screener-container {
        box-shadow: none; /* No shadow on print */
        border-radius: 0; /* No border radius */
        max-width: none; /* Use full width */
        width: 100%;
        padding: 1cm; /* A4 standard margins */
        margin: 0;
    }

    h1 {
        font-size: 24pt;
        margin-bottom: 15mm;
        color: #000; /* Ensure black for print */
    }
    h2 {
        page-break-before: always; /* Force new page before each main section */
        margin-top: 2cm; /* Space at top of new page */
        font-size: 18pt;
        border-bottom: 1pt solid #ccc;
        padding-bottom: 5mm;
        color: #000; /* Ensure black for print */
    }
    h3 {
        font-size: 14pt;
        margin-top: 1cm;
        margin-bottom: 5mm;
        color: #000; /* Ensure black for print */
    }

    p, ul, ol, div {
        widows: 3; /* Ensure at least 3 lines of a paragraph/block are visible */
        orphans: 3; /* Ensure at least 3 lines of a paragraph/block are visible */
        margin-bottom: 8mm; /* Consistent spacing */
    }

    .observation-section {
        background-color: #eef; /* Lighter background for print observation sections */
        border: 1px solid #ddd;
        padding: 10mm;
        margin-bottom: 10mm;
        border-color: #ccc; /* Lighter border for print */
    }
    .observation-instructions {
        color: #333;
        border-left-color: #a0c4ff; /* Lighter accent colour for print */
    }

    /* Hide elements not needed for print, e.g., "Next" buttons */
    .btn-navigation {
        display: none;
    }

    /* Adjust input fields for print - remove borders to make it look cleaner */
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    textarea,
    select {
        border: 1px dashed #bbb; /* Lighter border for fillable fields */
        padding: 2mm;
        background-color: #f9f9f9;
    }
    textarea {
        min-height: 50px; /* Smaller min-height for print if needed */
    }
    .radio-group label, .checkbox-group label {
        margin-right: 1cm;
    }
    input[type="radio"], input[type="checkbox"] {
        border: 1px solid #777;
    }

    /* Specific print adjustments for recommendation boxes */
    .recommendation-box {
        background-color: #f0f8ff; /* Very light blue for print */
        border-left: 4px solid #a0c4ff; /* Lighter blue for print */
        padding: 8mm;
        margin-top: 1cm;
        margin-bottom: 1cm;
    }
    .signature {
        page-break-before: auto; /* Allow break before if space, but keep with content */
        margin-top: 1.5cm;
        text-align: center;
        font-size: 0.8em;
        color: #555;
    }
}/* End custom CSS */