/* ===============================
   MODAL ANTONIA - BASE
   =============================== */

#modalAntonia .modal-dialog {
    height: 90vh;
    max-height: 90vh;
    margin: auto;
}

@media (max-width: 768px) {
    #modalAntonia .modal-dialog {
        height: 100vh;
        max-height: 100vh;
        margin: 0;
    }
}

/* ===============================
   MODAL CONTENT
   =============================== */

#modalAntonia .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* 🔑 MUY IMPORTANTE */
}

/* ===============================
   HEADER
   =============================== */

#modalAntonia .modal-header {
    flex-shrink: 0;
}

/* ===============================
   CHAT BODY (ÚNICO SCROLL)
   =============================== */

#modalAntonia .chat-body {
    flex: 1;
    overflow-y: auto;          /* ✅ SOLO AQUÍ */
    padding: 16px;
    background: #f4f6f9;

    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

/* ===============================
   INPUT (FIJO)
   =============================== */

#modalAntonia .chat-input {
    flex-shrink: 0;            /* 🔒 NO SE MUEVE */
    padding: 12px;
    background: #fff;
    border-top: 1px solid #dee2e6;
}

/* ===============================
   MENSAJES
   =============================== */

#modalAntonia .msg-bot,
#modalAntonia .msg-user {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 14px;
    line-height: 1.5;
    font-size: 14px;

    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ===============================
   USUARIO
   =============================== */

#modalAntonia .msg-user {
    align-self: flex-end;
    margin-left: auto;
    background: #0f766e;
    color: #fff;
    min-width: 40%;
}

/* ===============================
   BOT
   =============================== */

#modalAntonia .msg-bot {
    align-self: flex-start;
    background: #e9ecef;
    color: #212529;
}

/* ===============================
   BOTÓN MENÚ FÁCIL
   =============================== */

.btn-facil {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1040;
}

/* ===============================
   ESTÉTICA MENÚ
   =============================== */

.facil-menu .list-group-item i {
    font-size: 1.2rem;
    margin-right: 10px;
}
