/*
 * Estilos para las notificaciones de LaloQuote PRO
 */

.laloquote-notifications-container {
    position: fixed;
    top: 20px; /* Ajusta según sea necesario */
    right: 20px; /* Ajusta según sea necesario */
    z-index: 99999; /* Asegura que esté por encima de otros elementos */
    width: 300px;
    max-width: 90%; /* Para pantallas más pequeñas */
}

.laloquote-notification {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0; /* Inicialmente oculto para la animación */
    transform: translateY(-20px); /* Para la animación de entrada */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.laloquote-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.laloquote-notification p {
    margin: 0;
    padding-right: 25px; /* Espacio para el botón de cerrar */
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.laloquote-notification-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #999;
    transition: color 0.2s ease-in-out;
}

.laloquote-notification-close:hover {
    color: #333;
}

/* Tipos de notificaciones */
.laloquote-notification-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.laloquote-notification-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.laloquote-notification-info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Estilos para notificaciones responsivas */
@media (max-width: 600px) {
    .laloquote-notifications-container {
        width: calc(100% - 40px); /* Ocupa casi todo el ancho */
        left: 20px; /* Centra el contenedor */
        right: 20px;
    }
}