/* Bildirim İzni Popup Stilleri */
.notification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.notification-popup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
    margin: 20px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.notification-popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.notification-popup-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
}

.notification-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.notification-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-popup-body {
    padding: 25px;
}

.notification-popup-body p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.notification-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.notification-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.notification-benefits li i {
    margin-right: 10px;
    width: 16px;
}

.notification-popup-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.notification-popup-actions .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 500;
}

.notification-popup-footer {
    background: #f8f9fa;
    padding: 15px 25px;
    border-top: 1px solid #e9ecef;
}

.notification-popup-footer small {
    display: flex;
    align-items: center;
    color: #6c757d;
}

.notification-popup-footer i {
    margin-right: 5px;
    color: #28a745;
}

/* Responsive */
@media (max-width: 480px) {
    .notification-popup {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .notification-popup-header {
        padding: 15px;
    }
    
    .notification-popup-body {
        padding: 20px;
    }
    
    .notification-popup-footer {
        padding: 12px 20px;
    }
    
    .notification-popup-actions {
        flex-direction: column;
    }
    
    .notification-popup-actions .btn {
        width: 100%;
    }
}

/* Animasyonlar */
@keyframes notificationPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.notification-icon {
    animation: notificationPulse 2s infinite;
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .notification-popup {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .notification-popup-body p {
        color: #cbd5e0;
    }
    
    .notification-benefits li {
        color: #a0aec0;
    }
    
    .notification-popup-footer {
        background: #1a202c;
        border-top-color: #4a5568;
    }
    
    .notification-popup-footer small {
        color: #a0aec0;
    }
}
