.chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.chatbot-header {
    background-color: #e74c3c;
    color: rgb(255, 255, 255);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chatbot-body {
    background-color: white;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 80%;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
    position: relative;
}

/* Añade esto al estilo existente */
.bot-message {
    background-color: #f1f1f1;
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
    color: #000; /* Texto en negro */
}

.bot-message strong {
    color: #000; /* Texto en negrita también en negro */
}

.bot-message p {
    color: #000; /* Párrafos en negro */
    margin: 5px 0;
}
.user-message {
    background-color: #e74c3c;
    color: rgb(255, 255, 255);
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chatbot-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.chatbot-toggle i {
    font-size: 24px;
}

.hidden {
    display: none;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.option-btn {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.option-btn:hover {
    background-color: #2980b9;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.whatsapp-btn i {
    margin-right: 8px;
}
