/* BOTÓN FLOTANTE */
.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    font-size: 22px;
    z-index: 1050;
}

/* CHAT CARD */
.chat-wrapper {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 380px;
    height: 500px;
    display: none;
    flex-direction: column;
    z-index: 1040;
}

/* CUANDO ESTÁ ACTIVO */
.chat-wrapper.active {
    display: flex;
}

/* CUERPO DEL CHAT */
.chat-body {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f9fa;
}

/* MENSAJES */
.message {
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 75%;
    font-size: 14px;
}

.user {
    align-self: flex-end;
    background-color: #0d6efd;
    color: white;
}

.bot {
    align-self: flex-start;
    background-color: #e9ecef;
    color: black;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .chat-wrapper {
        width: 95%;
        right: 2.5%;
        height: 80vh;
    }
}