body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
    overflow: hidden; /* Evitar scroll innecesario */
}

.chat-container {
    text-align: center;
    width: 90%; /* Ocupa el 90% del ancho de la página */
    max-width: 1200px; /* Limitar el ancho máximo para pantallas muy grandes */
}

.chat-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin-top: 20px;
}

#outputBox {
    height: 300px; /* Reducido para ajustarse mejor a pantallas de 1080p */
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fafafa;
    word-wrap: break-word; /* Ajustar el texto dentro del contenedor */
}

#inputBox {
    width: calc(100% - 22px);
    height: 50px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
