/* Estilos para notificaciones */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.success {
    background-color: #10b981;
    border-left: 4px solid #059669;
}

.notification.error {
    background-color: #ef4444;
    border-left: 4px solid #dc2626;
}

.notification.warning {
    background-color: #f59e0b;
    border-left: 4px solid #d97706;
}

.notification.info {
    background-color: #3b82f6;
    border-left: 4px solid #2563eb;
}

@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}