/* Modo oscuro - Estilos generales del body */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Fondo oscuro */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #e0e0e0; /* Texto claro para mejor visibilidad */
}

/* Contenedor del chat */
.chat-container {
    margin: auto 0px !important;
    width: 400px;
    background: #1e1e1e; /* Fondo oscuro para el chat */
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

/* Caja del chat */
#chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #444;
}

/* Mensajes del usuario */
.user-message {
    background: #007bff; /* Azul brillante */
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    text-align: right;
}

/* Mensajes del bot */
.bot-message {
    background: #2a2a2a; /* Gris oscuro */
    color: #e0e0e0;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    text-align: left;
}

/* Campo de entrada */
input {
    width: 80%;
    padding: 10px;
    border: none;
    outline: none;
    background: #333;
    color: #e0e0e0;
    border-radius: 5px;
}

/* Botones */
button {
    width: 20%;
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3; /* Azul más oscuro */
}
