/* NOTIFICACIONES TEMPORALES */
.notificacion-temporal {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 400px;
    border-left: 5px solid;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s ease;
}

.notificacion-temporal.mostrar {
    transform: translateX(0);
    opacity: 1;
}

.notificacion-temporal.exito {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9, #ffffff);
}

.notificacion-temporal.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8, #ffffff);
}

.notificacion-temporal.info {
    border-left-color: #17a2b8;
    background: linear-gradient(135deg, #f8fdff, #ffffff);
}

.notificacion-icono {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notificacion-contenido {
    flex-grow: 1;
}

.notificacion-titulo {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.notificacion-mensaje {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* ANIMACIONES PARA CONFIRMACIONES */
@keyframes popIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes popOut {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}