body {
    color: #cc2691;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.btn-arabela {
    background: #cc2691;
}

.bg-arabela {
    background: #cc2691;
}

.btn-arabela:hover {
    background: #e082b9;
}

.color-arabela {
    color: #cb0d8a;
}

.responsive-img {
    width: 100%;
    max-height: 600px;
}

.btn-wp {
    background: #25d366;
    border: none;
    border-radius: 25px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.chat-container {
    max-height: 500px;
    overflow-y: scroll;
    font-size: 25px;
}

textarea {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 25px;
    font-weight: bold;
}

.send {
    border-radius: 4px;
    font-size: 25px;
    font-weight: bold;
}

.recive {
    background: #a7ccd8;
    border-radius: 4px;
    font-size: 25px;
    font-weight: bold;
}

.bg-gray {
    background: #f0f6f8;
    border: black;
}

.numeros {
    list-style-type: decimal;
    /* Cambia viñetas a números */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

/* Estilos generales para la ventana modal */
.modal-dialog {
    max-width: 600px;
    margin: 0 auto;
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: #cc2691;
    border-bottom: none;
    color: white;
    padding: 15px;
    font-size: 1.25rem;
}

.modal-header .btn-close {
    background-color: transparent;
    border: none;
    color: white;
}

/* Estilo para la burbuja de chat */
.chat-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilo para los mensajes del chatbot */
.send, .receive {
    max-width: 75%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.4;
}

.send {
    background-color: #007bff;
    color: white;
    text-align: right;
    margin-left: auto;
}

.receive {
    background-color: #e9e9e9;
    color: #333;
    text-align: left;
    margin-right: auto;
}

/* Estilos para el área de texto y el botón de enviar */
textarea {
    border-radius: 20px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    resize: none;
    width: 100%;
    height: 60px;
}

.input-group-prepend .input-group-text {
    background-color: transparent;
    border: none;
    color: #007bff;
    font-size: 1.5rem;
}

.input-group-prepend .input-group-text a {
    color: inherit;
    text-decoration: none;
}

.input-group-prepend .input-group-text a:hover {
    color: #0056b3;
}

/* Botón de cerrar */
.btn-close {
    outline: none;
    border: none;
    color: white;
    font-size: 1.25rem;
}