body {
    background-color: #e6e6e6;
    margin: 0;
}
.chat-container {
    margin: 0 auto;
    background-color: #e6e6e6;
    height: 100vh;
}
.endButton {
    width: 100%;
    height: 200px;
}
.message-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 6px;
    /*width: 80%;*/
    margin-right: 5%;
}

.question-avatar-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius:6px;
    margin-left: 2.5%;
}

.question {
    font-weight: 530;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 2%;
    margin-left: 2.5%;
    float:left;
}

.answer-option {
    background-color: #d0021b;
    padding: 8px 20px;
    margin-left: 15px;
    margin-bottom: 11px;
    border-radius: 11px;
    cursor: pointer;
    color: #ffffff;
    min-width: 80px;
    text-align: center;
}

.answer-message {
    background-color: lightblue;
    padding: 5px 10px;
    border-radius: 3px;
    align-self: flex-end;
    margin-top: 5px;
}

.answer-options-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 1%;
}

.answered-question {
    opacity: 1;
    pointer-events: none;
}

.jump-button {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    background-color: white;
}
.jump-button img {
    display: block;
    object-fit: contain;
}

@keyframes jumpButtonAnimation {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.6);
    }
}
.answerMessage {
    display: flex;
    justify-content: flex-end;
    border:5px;
}
.answerMessageButton {
    background: #d0021b; border: 0.5px solid #d0021b; border-radius: 4px;  text-align: center; line-height: 35px; padding: 5.5px 0px; -webkit-box-flex: 1; display: flex;  justify-content: center; -webkit-box-align: center; align-items: center; color: #ffffff;padding: 2px 10px;margin-right: 5%;
}
.button-img {
    width: 100%;
    height: 150px;
}
.red-text {
    color: #e22d3d;
}
.header-text {
    margin-left: 2.5%;
    color: #5a5858;
}
.headerImg{
    width: 100%;
}

.error-message {
    background-color: #d0021b;
    color: white;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 4px;
    text-align: center;
    width: 80%;
    font-weight: bold;
}

.error-message1 {
    background-color: #d0021b;
    color: white;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 4px;
    text-align: center;
    width: 80%;
    font-weight: bold;
    margin-top: 15%;
}