.content-column-atendimento {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#chat-header-div {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.protocolo-title-div {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-left: 16px;
    margin-bottom: 8px;
}

.protocolo-title-admin {
    font-size: 24px;
    font-weight: 700;
}

.protocolo-description-div {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 16px;
}

.protocolo-description-info {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.protocolo-description-tags {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 24px;
}

.protocolo-description {
    font-size: 15px;
    font-weight: 500;
    color: rgb(164,164,164);
}

.info-divider {
    margin: 0px 12px;
    color: rgb(164,164,164);
}

.div-divider {
    width: 100%;
    height: 1.5px;
    background-color: rgb(204,204,204);
    margin: 12px 0px;
}

.chat-div {
    width: 100%;
    height: 100%;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.chat-div::-webkit-scrollbar {
    width: 6px;
}

.chat-div::-webkit-scrollbar-track {
    background: rgb(224,224,224);
    border-radius: 12px;
}

.chat-div::-webkit-scrollbar-thumb{
    background: gray;
    border-radius: 12px;
}

.message-box {
    width: 100% !important;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px;
    margin-bottom: 16px;
}

.message-box-prefeitura {
    justify-content: end;
}

.message-box-cidadao {
    justify-content: start;
}

.message-photo-div {
    width: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.message-photo-circle-background {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 4px;
}

.message-photo {
    width: 100%;
}

.message-text-div {
    max-width: calc(100% - 38px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: start;
    border-radius: 12px;
    padding: 16px;
}

.message-cidadao {
    justify-content: start;
    margin-left: 12px;
}

.message-prefeitura {
    justify-content: end;
    margin-right: 12px;
}

.ver-arquivo-div {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#ver-arquivo-img {
    height: auto;
    max-height: 50vh;
    width: auto;
    max-width: 90%;
}

#ver-arquivo-video {
    width: 90%;
    height: auto;
}

.file-tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid rgb(164,164,164);
    border-radius: 6px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 500;
    color: rgb(114, 114, 114);
    margin-right: 12px;

    &:hover {
        cursor: pointer;
        color: black;
    }
}

.icon-file-tag {
    width: 13px;
    margin-right: 8px;
}

.response-div {
    width: 100%;
    height: 15%;
}

#form-send-message {
    align-self: self-end;
}