body {
    margin: unset;
}

* {
    box-sizing: border-box;
    border-radius: 5px;
}

textarea {
    resize: none;
}

p {
    margin: unset;
}

#app-container {
    display: flex;
    flex-direction: row;
}

#chat-container, #inputs-container, #outputs-container {
    padding: 10px;
    margin: 5px;
    height: calc(100vh - 15px);
    scroll-behavior: auto;
    overflow: scroll;
}

#chat-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    background-color: #f0f0f0;
}

#chat-history {
    display: flex;
    flex-direction: column;
    flex: 9;
    border: solid 1px grey;
}

#chat-input {
    flex: 1;
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    max-height: 35px;
}

#chat-input-text {
    flex: 4;
}

#chat-input-button {
    flex: 1;
    max-width: 60px;    
}

#inputs-container, #outputs-container {
    flex: 1;
}

.input-field, .output-field {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.chat-bubble-bot, .chat-bubble-user {
    border-radius: 20px;
    margin: 5px;
    padding: 10px;
    border: solid 1px grey;
}
.chat-bubble-bot {
    margin-left: 30px;
    background-color: grey;
    color: white;
}

.chat-bubble-user {
    margin-right: 30px;
    background-color: green;
    color: white;
}

.output-field label {
    font-weight: bold;
    font-size: larger;
}

.output-field div {
    border: solid 1px grey;
    margin: 5px 0;
    padding: 5px;
}

.output-raw-value {
    display: none;
}

.hide {
    display: none;
}
