/* Contenedor principal, fijo en la esquina */
#gemini-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Asegura que esté por encima de todo */
}

/* Botón de alternancia */
#chatbot-toggle-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px; /* Forma de pastilla */
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}

#chatbot-toggle-button:hover {
    background-color: #45a049;
}

/* Ventana de Chat */
#chatbot-window {
    width: 320px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    overflow: hidden;
}

/* Área de mensajes */
#chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

/* Estilos de los mensajes */
.message {
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 85%;
    line-height: 1.5;
}

.user-message {
    background-color: #007bff;
    color: white;
    margin-left: auto; 
    text-align: right;
}

.bot-message {
    background-color: #e5e5ea;
    color: #333;
    margin-right: auto;
    text-align: left;
}

/* Input y botón de envío */
#chat-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    border-top: 1px solid #eee;
    font-size: 14px;
}

#chat-send-button {
    width: 80px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#chatbot-window input, #chatbot-window button {
    display: inline-block;
    vertical-align: middle;
}

/* Contenedor del input y botón */
#chatbot-window > :last-child {
    display: flex;
    border-top: 1px solid #ccc;
}