.graph-section{
    padding-top: 1rem !important;    
}
.fixed-container {
    position: fixed;
    right: 0;
    top: 0;    
    overflow-y: auto;
}
#chat-container {
    height: 728px;
    border: none;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 0.25rem;
    overflow: hidden;
}

#messages {
    flex-grow: 1;    
    padding: 10px;
    border-bottom: none;
    flex-direction: column;
    margin-bottom: 0.25rem; /* Space between messages and input field */
    justify-content: flex-end;
    overflow-y: auto;
}

.message {
    margin: 5px 0;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

#chat-input {
    padding: 10px;
    height: 60px;
    outline: none;
    width: calc(100% - 70px); /* Adjusted width for button */
    border: none;
    overflow-y: auto;
    resize: none;
    padding: none;
}

#send-button {
    width: 60px;
    height: 50px;
    padding: 10px;
    border: none;
    background-color: #a3a3a3;
    color: white;
    cursor: pointer;
    border-radius: 1.0rem;
}