body{
    padding: 0px;
    border: 0px;
    margin: 0px;
    background-color: gray;
}

#wrapper{
    margin: auto;
    width: 80%;
    margin-top: 5vh;
    height: 90vh;
    border: solid 1px black;
    background-color: white;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.kopf{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border: solid 1px black;
    flex-shrink: 0;
}

.textanzeige{
    flex-grow: 1;
    height: 100%;
    overflow-y: auto;
}

.form{
    flex-shrink: 0;
}

.form-container{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 4px;
}

#nachricht{
    margin: 0px;
    flex-grow: 1;
    margin-right: 5px;
    margin-left: 5px;
}

.message-item {
    padding: 4px 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-family: Arial, Helvetica, sans-serif;
}

.message-item--my {
    justify-content: flex-start;
}

.message-itemhintergrund {
    padding: 4px;
    background-color: #dddddd;
    border-radius: 3px;
    border: 1px gray solid;
}

.message-itemhintergrund > p {
    margin-top: 4px;
    margin-bottom: 0px;
}

.message-item--my > .message-itemhintergrund {
    background-color: #69d383;
}

.submit {
    width: 60px;
    background-color: #000000;
    border: none;
    flex-shrink: 0;
    color: white;
    outline: none;
    border-radius: 3px;
    padding: 8px;
}

.messagezeile{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 10px;
}

.message-user {
    margin-right: 10px;
}

.refresh-form {
    text-align: center;
}
    

.refresh {
    background-color: #000000;
    border: none;
    color: white;
    outline: none;
    border-radius: 3px;
}