/* Alert container */
.alert-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffcc00; /* Noticeable yellow background */
    color: #333; /* Dark text for contrast */
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    z-index: 9999; /* Ensure alert is above other content */
}

/* Alert text styling */
.alert-text {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

/* Email link styling */
.alert-email {
    color: #0066cc; /* Blue color for email link */
    text-decoration: none;
    margin-left: 5px;
}

.alert-email:hover {
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .alert-text {
        font-size: 16px;
        padding: 10px;
    }

    .alert-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .alert-text {
        font-size: 14px;
    }

    .alert-container {
        padding: 10px;
    }
}