/* Estilos para transiciones suaves */
.section-container div {
    transition: opacity 0.5s ease-in-out;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}


#chat-form {
    position: relative;
    display: flex;
    justify-content: center;
}

#chat-form input {
    width: 100%;
    padding-right: 50px;
    padding-left: 1rem ;
    /* Espacio para el botón */
    box-sizing: border-box;
}

#chat-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    /* Ajusta al tamaño deseado */
    border: none;
    border-top: 2px solid #4F4F4F;
    border-bottom: 2px solid #4F4F4F;
    border-right: 2px solid #4F4F4F;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}