/**
 * Estilos para el mensaje de error del Banner Search
 */

.habitaciones-error-message {
    background-color: #f8d7da; 
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

@media (min-width: 769px) {
    .habitaciones-error-message {
        position: absolute;
        z-index: 999;
        margin-top: 50px;
    }
}

.habitaciones-error-message .error-icon {
    font-size: 20px;
    margin-right: 10px;
}

/* Animación de entrada */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .habitaciones-error-message {
        font-size: 13px;
        padding: 12px 15px;
    }
}

/* Resaltar campos con error */
.habitaciones-has-error {
    border-color: #f5c6cb !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
