.chat-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.message-window {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    width: 100%;
}

.message-form {
    width: 50%;
    height: 50px;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.message-input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #303030;
    color: #ffffff;
    outline: none;
    width: 100%;
    height: 100%;
    resize: vertical;
}

.message-submit {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #4080ff;
    color: #ffffff;
    cursor: pointer;
    height: 100%;
    width: 10%;
    min-width: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-submit:hover {
    background-color: #2557c8;
}

.jinja-container {
    width: 100%;
    height: 100%;
}

.message-window {
    width: 100%;
}

.message-content {
    width: 100%;
    height: 10%;
    padding: 8px 10px;
    display: flex;
    border-radius: 6px;
    background-color: rgb(19, 27, 38);
    color: #ffffff;
}

.icon-text-container {
    display: flex;
    height: 100%;
    flex-direction: row;
}

.message-text {
    margin-block-end: 0;
    margin-left: 1.5rem;
}

.message-text ul, ol {
    margin-left: 12px;
}

.message-icon {
    width: 36px;
    height: 36px;
}

#loading-message {
    display: none;
}

.message-examples {
    position: absolute;
    top: 15%;
}

.message-examples-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.message-example {
    cursor: pointer;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid gray;
    padding: 5px 10px;
    color: gray;
}

.message-example:hover {
    color: white;
    border: 1px solid white;
}
