/* Notification Bar */
.notification-bar {
    background-color: #FFF8E1; /* Light yellow background */
    color: #444; /* Dark text */
    padding: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.notification-bar * {
    text-decoration: none !important;
}

/* Emoji Styling */
.warning-icon {
    margin-right: 8px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}

/* Mobile Friendly */
@media screen and (max-width: 480px) {
    .notification-bar {
        font-size: 14px;
        padding: 10px;
        text-align: center;
        text-decoration: none;
    }
}
