/* #chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #c42922;
    color: white;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header {
    background-color: #c42922;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

#chat-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    max-height: 400px;
    border-radius: 10px;
}

#chat-box {
    height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

.chat-message {
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 8px;
    max-width: 75%;
}

.chat-user {
    background-color: #c42922;
    color: white;
    align-self: flex-end;
}

.chat-bot {
    background-color: #f1f1f1;
    align-self: flex-start;
} */

/* Contenedor principal del chat */
#chat-container {
    width: 300px;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

/* Encabezado del chat */
.chat-header {
    background: #b22222;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

/* Cuerpo del chat */
.chat-body {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

/* Opciones de botones */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.chat-option {
    background: white;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.chat-option:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

/* Burbuja flotante del chat */
#chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #b22222;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;

    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mensajes del usuario */
.user-message {
    text-align: right;
    background: #d1ecf1;
    padding: 8px;
    border-radius: 8px;
    margin: 5px 0;
}

/* Mensajes del bot */
.bot-message {
    text-align: left;
    background: #f8d7da;
    padding: 8px;
    border-radius: 8px;
    margin: 5px 0;
}
