#chat-container {

    background-color: #13294B;

}

#chatbox {
    height: 70vh;
    overflow: auto;
    margin-left: 5px;
    display: flex;
    flex-direction: column;


}

#chat-inner-container {
    margin-top: 5px;
    height: 70vh;
    /*overflow: scroll;*/

    background-color: white;
    border-radius: 2%;

}

#card-inner-box {
    margin-top: 5px;
    display: flex;
    align-self: flex-end;
}

#input-and-button {

    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 0;
    margin-top: 3rem;
    align-self: end;


}



.message-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.user-message {
    background-color: #66a7df;
    padding: 10px;
    text-align: right;
    border-radius: 15px;
    display: inline-block;
    max-width: 70%;
    margin: 5px 0;
    margin-left: 10px;
    font-weight: bold;
    /* Add bold font weight */
    color: #2c2c2c;
    /* Change color for better readability */
}

.bot-message {
    background-color: #dd9090;
    padding: 10px;
    text-align: left;
    border-radius: 15px;
    display: inline-block;
    max-width: 70%;
    margin: 5px 0;
    margin-left: 10px;
    font-weight: bold;
    /* Add bold font weight */
    color: #2c2c2c;
    /* Change color for better readability */
}

.message-label {
    font-size: 1rem;
    /* Adjust the font size */
    font-weight: bold;
    /* Add bold font weight */
    color: #2c2c2c;
    /* Change color for better readability */
    margin-bottom: 2px;
}