﻿/* General styling for the body */
.alert-f2025-banner-container {
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top of the viewport */
    box-sizing: border-box;
}

/* Styling for the alert banner container */
.alert-f2025-banner {
    width: 100%;
    background-color: #ffe599; /* Light cautionary yellow/orange */
    color: #333; /* Dark text for high contrast */
    border: 2px solid #e69138; /* Strong border color */
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    line-height: 1.6;
    margin: 0 auto; /* Center the box */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Styling for the critical title */
.alert-f2025-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cc0000; /* Red emphasis */
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #e69138;
    padding-bottom: 10px;
}

/* Separator for English and Spanish text */
.language-f2025-separator {
    margin: 20px 0;
    height: 1px;
    background-color: #e69138;
}

/* Styling for links */
.alert-f2025-banner a {
    color: #0066cc; /* Standard blue link */
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .alert-f2025-banner {
        padding: 15px;
        border-radius: 8px;
    }

    .alert-f2025-title {
        font-size: 1.25rem;
    }
}
