/* ==================== NOTIFICATION MODAL ==================== */

.notification-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.notification-modal {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.notification-modal-overlay.show .notification-modal {
    transform: scale(1) translateY(0);
}

.notification-modal-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: bellRing 1s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70%, 100% { transform: rotate(0deg); }
}

.notification-modal-title {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #131010;
    margin: 0 0 12px 0;
}

.notification-modal-text {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.notification-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.notification-modal-btn {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.notification-modal-btn.primary {
    background: #C6DF2B;
    color: #131010;
}

.notification-modal-btn.primary:hover {
    background: #b5cd25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 223, 43, 0.4);
}

.notification-modal-btn.secondary {
    background: #f5f5f5;
    color: #666;
}

.notification-modal-btn.secondary:hover {
    background: #eee;
}

/* ==================== NOTIFICATION TOGGLE IN SETTINGS ==================== */

.notification-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 16px;
}

.notification-toggle-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-toggle-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-toggle-text h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #131010;
    margin: 0 0 4px 0;
}

.notification-toggle-text p {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    color: #888;
    margin: 0;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #C6DF2B;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* ==================== NOTIFICATION STATUS BADGE ==================== */

.notification-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
}

.notification-status.enabled {
    background: rgba(198, 223, 43, 0.2);
    color: #7a8a15;
}

.notification-status.disabled {
    background: rgba(255, 107, 107, 0.2);
    color: #cc4444;
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 480px) {
    .notification-modal {
        padding: 24px;
        margin: 16px;
    }
    
    .notification-modal-icon {
        font-size: 48px;
    }
    
    .notification-modal-title {
        font-size: 20px;
    }
    
    .notification-modal-text {
        font-size: 14px;
    }
    
    .notification-modal-buttons {
        flex-direction: column;
    }
    
    .notification-modal-btn {
        width: 100%;
    }
}