/* assets/css/style.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5 !important;
}

/* Restricción Mobile-First */
.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Custom Bottom Nav ajustado al ancho máximo */
.custom-bottom-nav {
    max-width: 480px;
    margin: 0 auto;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: 0.5rem 0;
}

.custom-bottom-nav .nav-item {
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}

.custom-bottom-nav .nav-item.active {
    color: #0d6efd !important;
}

/* Animación de pulso para alertas críticas */
@keyframes pulse-bg {
    0% { background-color: #dc3545; }
    50% { background-color: #ff4d4d; }
    100% { background-color: #dc3545; }
}

.animate-pulse {
    animation: pulse-bg 1.5s infinite;
    color: white;
}

/* Chat UI Styles */
.chat-container {
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding-bottom: 20px;
}

.chat-message {
    max-width: 85%;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
}

.chat-message.user {
    background-color: #0d6efd;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.chat-message.bot {
    background-color: #e9ecef;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 0;
}
