/* Chat Section Starts here */
.chat-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 135px);
    background-color: #101D25;
}

.chats-container {
    height: calc(100vh - 186px);
    width: 100%;
    overflow-y: scroll;
}

.chats-container .chats {
    padding: 50px 0px;
}

/* Chat Section Scrollbar */
.chats-container::-webkit-scrollbar {
    width: 6px;
}

.chats-container::-webkit-scrollbar-track {
    background: #101D25;
}

.chats-container::-webkit-scrollbar-thumb {
    background: #1F3847;
    border-radius: 5px;
}

.chats-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.38);
}

/* Font styling */
.chat-input-bar textarea#chat-input,
.chat-section .chats-container {
    color: white;
    font-family: 'Roboto-Regular';
    size: 16px;
    line-height: 21.6px;
}

.chats-container .chats {
    margin: 0 auto;
    width: 800px;
}

.chat-input-bar .chat-input-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Chat input bar styling */
.chat-input-bar {
    display: flex;
    flex-direction: column;

    padding: 10px 13px 10px 24px;

    /* REMOVE this block */
    /* display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; */

    box-sizing: border-box;
    width: 800px;
    height: auto;
    background-color: #333333;
    border-radius: 35px;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.55);

    position: absolute;
    bottom: 16px;
    left: calc(50% - 3px);
    transform: translateX(-50%);
}

textarea#chat-input {
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: 172.8px;

    background: none;
    resize: none;
    outline: none;
    border: none;
    padding: 0px;
    flex: 1;

    overflow-y: hidden;

    field-sizing: content;
}

/* Text Area Chat Input Scrollbar */
textarea#chat-input::-webkit-scrollbar {
    width: 6px;
}

textarea#chat-input::-webkit-scrollbar-track {
    background: #333333;
}

textarea#chat-input::-webkit-scrollbar-thumb {
    background: #4D4D4D;
    border-radius: 5px;
}

textarea#chat-input::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.38);
}

textarea#chat-input.scrolling {
  overflow-y: auto;
}

.chat-input-bar button.emoji-btn {
    height: 30px;
    width: 30px;
    background-color: whitesmoke;

    -webkit-mask: url('/static/icons/smile.svg') no-repeat;
    mask: url('/static/icons/smile.svg') no-repeat;

    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: 50% 50%;

    padding: 0px;
    border: 0px;
}

.chat-input-bar button.send-btn {
    padding: 0;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 25px;
    height: 50px;
    width: 50px;

    background-color: #494B50;
}

.chat-input-bar button.send-btn .uparrow-icon {
    height: 30px;
    width: 30px;
    background-color: whitesmoke;
    -webkit-mask: url('/static/icons/up-arrow.svg') no-repeat;
    mask: url('/static/icons/up-arrow.svg') no-repeat;
    mask-size: contain;
}

/* User Message Styling */
.chat-section .chats-container .chats .talk-bubble {
    box-sizing: border-box;
    margin: 3px 0px 3px auto;
    max-width: 600px;
    width: fit-content;
    padding: 16px;
    background-color: #333333;
    border-radius: 20px;
}

.chat-section .chats-container .chats .response {
    margin: 20px 0;
}

.chat-section .chats-container .chats .talk-bubble p {
    margin: 0px;
    white-space: pre-line;
}

/* Reviews styling */
.reviews-container {
    /* width: 100%; */
    max-width: 100%;
    /* min-height: 100%; */

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    align-items: center;
    justify-content: start;

    margin: 40px 0;
}

.review-card-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    width: 150px;
}

.review-card-container .review-card-image-container {
    box-sizing: border-box;
    width: 150px;
    height: 225px;
    overflow: hidden;
}

.review-card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review-card-container h4, .review-card-container p {
    margin: 0px;
    padding: 0px;
}

.no-wrap {
    white-space: nowrap;
}

.overflow-hidden {
    overflow: hidden;
}

.review-card-container .star-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.review-card-container .star-container img {
    width: 20px;
    height: auto;
}