/* Copyright (C) Matrisk GmbH 2022*/

/* Style for the conversation container */
#conversation{
    width: 100%;
}

/* Style for the astronaut picture */
#astroPicture{
    width: 70%;
}

/* Style for the astronaut picture container */
#astronautDiv{
    width: 30%;
}

/* Style the messages container */
#messageDiv{
    width: 70%;
}

/* Style the srcolling area */
.scroll {
    margin: 5px;
    padding: 5px;
    /*background-color: rgb(198, 207, 242);*/
    width: 100%;
    height: 400px;
    overflow: auto;
    display: flex;
    flex-direction: column-reverse;

    /*text-align: justify;*/
}

/* Style the table containing the conversation */
.track {
    /*text-align: justify;*/
    width: 100%;
    font-family: 'Courier New'
}

/* Style the messages from the astronaut */
.other-message {
    word-wrap: break-word;
    width: 80%;
    /*text-align: justify;*/
    background-color: #0F4754;
    color: azure;
    border-radius: 10px;
    padding: 5px;
    margin-right: 15%;
    margin-top: 5%;
}

/* Style the messages from the user */
.my-message {
    word-wrap: break-word;
    width: 80%;
    /*text-align: justify;*/
    background-color: #26B4D4;
    border-radius: 10px;
    padding: 5px;
    margin-left: 15%;
    margin-top: 5%;
}

/* Style the escape buttons */
.button-fail{
    background-color: rgb(0, 0, 0);
    color:white
}

/* Style the buttons that only lead to next messages */
.button-next{
    background-color: rgb(0, 0, 0);
    color:white;
    width: 50%;
    margin-left: 25%;
}

/* Style the buttons that only lead to next messages if disabled */
.button-next:disabled{
    background-color: #26B4D4;
    color:rgb(0, 0, 0);
    width: 50%;
    margin-left: 25%;
}

/* Style the escape buttons if disabled*/
.button-fail:disabled{
    background-color: #0D3C47;
    color: azure;
}

/* Style the text entry controllers */
#inputComponent{
    width: 50%;
    margin-left: 25%;
}

/* Style the text entry controllers if disabled*/
#inputComponent:disabled{
    background-color: #26B4D4;
    color:rgb(0, 0, 0);
    width: 50%;
    margin-left: 25%;
}

/* Style the choice buttons if disabled*/
.choice-button:disabled{
    background-color: #0D3C47;
    color: azure;
}

/* Style the underlined text*/
u {
    text-decoration: white solid underline;
}
