/* Estilos generales del body */
body {
    display: flex;
    justify-content: center;  /* Centra horizontalmente */
    align-items: center;      /* Centra verticalmente */
    height: 100vh;            /* Ocupa toda la altura de la pantalla */
    margin: 0;                /* Elimina los márgenes por defecto */
    padding: 0;
    background-color: #f4f4f4; /* Fondo gris claro para mejor contraste */
    font-family: Arial, sans-serif; /* Fuente moderna y limpia */
}

.chat-container {
    width: 90vw;
    max-width: 600px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}
#chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.user-message {
    background: #007bff;
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    text-align: right;
}

.bot-message {
    background: #ddd;
    color: black;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    text-align: left;
}

input {
    width: 80%;
    padding: 10px;
    border: none;
    outline: none;
}
.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
button {
    width: 20%;
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}
