body {
    background-color: #fff; /* Fondo blanco */
    color: #333; /* Texto gris */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #333; /* Navbar gris oscuro */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.main-content {
    display: flex;
    height: calc(100vh - 60px); /* Resta el tamaño del navbar */
}

.conversation-list {
    background-color: #333; /* Lista de conversaciones gris oscuro */
    color: #fff;
    width: 250px;
    padding: 10px;
    overflow-y: auto;
}

.conversation-item {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.conversation-item:hover {
    background-color: #444; /* Hover más oscuro */
}

.conversation-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.conversation-item-preview {
    color: #aaa;
}

.conversation-panel {
    flex: 1;
    background-color: #fff; /* Panel blanco */
    padding: 20px;
    overflow-y: auto;
    position: relative;
}

.message-input-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
}

.message-input {
    flex: 1;
    border: none;
    background-color: #fff; /* Input blanco */
    color: #333; /* Texto gris */
    padding: 8px;
    border-radius: 5px;
    margin-right: 10px;
    max-width: 100%;
}

.send-button {
    background-color: #106df8; /* Color del botón secundario de UIKit */
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-message {
    margin-bottom: 10px;
    word-wrap: break-word;
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    clear: both;
    border: 1px solid #106df8; /* Borde alrededor de los mensajes */
}

.chat-message.sent {
    float: right;
    background-color: #4CAF50;
}

.pseudo-name {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
}

.chatbot-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.chatbot-button {
    background-color: transparent;
    border: 1px solid #106df8;
    color: #106df8;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
}

.disabled {
    pointer-events: none; /* Deshabilita eventos de ratón */
    opacity: 0.5; /* Opacidad reducida para indicar deshabilitado */
}

.selected {
    background-color: #106df8; /* Cambia el color de fondo al seleccionar */
    color: #fff; /* Cambia el color del texto al seleccionar */
}

.response-buttons {
    display: flex;
    margin-top: 5px;
}

.response-button {
    margin-right: 10px;
    background-color: #106df8; /* Cambia el color de fondo */
    color: #fff; /* Cambia el color del texto */
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.response-text {
    margin-left: 5px;
}

.like-icon {
    margin-right: 5px;
    color: #4CAF50;
}

.dislike-icon {
    margin-right: 5px;
    color: #f44336;
}
