﻿/* 🔹 Contenedor del chat */
.form-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 🔹 Estilizar los inputs de usuario y mensaje */
input {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

/* 🔹 Botón de enviar */
#btnSend {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    #btnSend:hover {
        background-color: #0056b3;
    }

/* 🔹 Caja de mensajes */
#messages, #notifications {
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
}
