/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-popup.show {
    opacity: 1;
    visibility: visible;
}

.notification-popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.notification-popup.show .notification-popup-content {
    transform: scale(1);
}

.notification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notification-popup-content h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.notification-popup-content p {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.notification-buttons .btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.btn-close {
    background: none;
    border: none;
    color: var(--gray-800);
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Mobile Menu Notification Toggle */
#notificationToggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
}

#notificationToggle i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

.notification-text {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .notification-popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .notification-icon {
        font-size: 2.5rem;
    }
    
    .notification-buttons {
        flex-direction: column;
    }
}