/* Emergency Notification */
.emergency-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.emergency-notification-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.emergency-notification-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
}
.emergency-notification-close:hover {
    color: #333;
}
.emergency-notification-content {
    width: 100%;
}
.emergency-notification-iframe-container iframe {
    width: 100%;
    border: none;
    display: block;
    border-radius: 8px;
}

#emergency-notification-box iframe {
    width: 100%;
    min-height: 420px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .emergency-notification-container {
        padding: 25px 20px;
        max-width: 95%;
    }
    #emergency-notification-box iframe {
        min-height: 300px;
    }
    .emergency-notification-iframe-container {
        max-width: 95%;
        width: 100%;
    }
    .emergency-notification-iframe-container iframe {
        min-height: 400px;
    }
}
