/* assets/css/notification.css */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.notification-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: notificationSlideIn 0.3s ease;
}

@keyframes notificationSlideIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes notificationFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.notification-icon {
    margin-bottom: 20px;
}

.notification-icon img {
    border-radius: 50%;
    padding: 10px;
    background: #f0f7ff;
}

.notification-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.notification-modal-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.notification-modal-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.notification-modal-content li {
    margin-bottom: 8px;
    color: #555;
}

.notification-actions {
    display: flex;
    gap: 10px;
    margin: 25px 0 15px;
    flex-direction: column;
}

.btn-primary {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.notification-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.notification-success {
    padding: 20px;
}

.success-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .notification-modal-content {
        padding: 20px;
    }
    
    .notification-actions {
        flex-direction: column;
    }
}