/* INTERVIEW */

.rca-interview-window {
    display: flex;
    flex-direction: column;
}

.rca-interview-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 75%;
    word-wrap: break-word;
}

/* Style for the person asking the questions */
.rca-interview-message.question {
    background-color: #e5e5ea;
    align-self: flex-start;
    border-bottom-left-radius: 0px;
}

/* Style for the interviewee (person answering) */
.rca-interview-message.answer {
    background-color: #007aff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0px;
}

/* Styling scrollbar for a better appearance */
.rca-interview-chat-window::-webkit-scrollbar {
    width: 8px;
}

.rca-interview-chat-window::-webkit-scrollbar-track {
    background: #f0f0f5;
}

.rca-interview-chat-window::-webkit-scrollbar-thumb {
    background-color: #a0a0a5;
    border-radius: 10px;
}

/* PICTURE */
.rca-picture {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TEMPLATE */

.rca-form-container {
    display: flex;
    flex-wrap: wrap;
}

.rca-form-left-column,
.rca-form-right-column {
    flex: 1;
    padding: 10px;
}

.rca-interview-field {
    border-radius: 2px;
    border: 1px solid #c5c5c5;
    cursor: default;
}