#submit {
    background-color: transparent;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: black;
    border-radius: 10px;
    position: relative;
    font-size: 20px;
    margin-left: 15px;
}

#text-box {
    border-radius: 10px;
    padding-left: 15px;
    padding-top: 15px;
}

#prompt {
    border: none;
    border-radius: 10px;
    width: 350px;
    background-color: #ffffff;
    resize: none;
    height: 50px;
    font-size: 15px;
    padding: 7px !important;
}

#prompt:focus {
    border: none;
}


#output-wrapper {
    width: 450px;
    padding: 15px;
    min-height: 250px;
    max-height: 250px;
    overflow-y: auto;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.chatbox-wrapper {
    font-size: 15px;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.name-box {
    min-width: 50px;
}

#hide-chat-button {
    float: right;
    background-color: transparent;
    border: 0px;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: black;
    border-radius: 10px;
    position: relative;
    font-size: 20px;
}

#chat {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: fit-content;
    display: none;
    background-color: #f0f0f1;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#show-chat-button {
    display: block;
    background-color: transparent;
    border: 0px;
    padding: 0px;
    width: 75px;
    height: 75px;
    position: relative;
    font-size: 50px;
}

#show-chat {
    position: fixed;
    bottom: 2%;
    right: 2%;
}