﻿.important-notification {
    background-color: #ff4c4c; /* Bright red for urgency */
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    margin: 20px auto;
    max-width: 600px;
}

/* Add a pulsing animation to draw attention */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
