/**
 * Notification Modal Styles
 * Generic notification modal to replace browser alerts
 */

.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.notification-modal.active {
    display: flex;
}

.notification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.notification-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px 32px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.notification-modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.notification-modal-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.notification-modal-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.notification-modal-button {
    width: 100%;
    padding: 14px 24px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.notification-modal-button:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.notification-modal-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-modal-content {
        padding: 32px 24px 24px;
        max-width: 90%;
    }

    .notification-modal-icon {
        font-size: 2.5rem;
    }

    .notification-modal-title {
        font-size: 1.3rem;
    }

    .notification-modal-message {
        font-size: 0.95rem;
    }
}
