* {
    font-family: roboto;
}

#iframe_container {
    width: 80vw;
    height: 50vw;
    background-color: blue;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
    transform: translate(-50%, -50%);
}

.complete {
    background-color: green;
    cursor: pointer;
}

.viewing {
    background-color: purple;
    cursor: pointer;
}

#toolBar, #commentBox {
    position: absolute;
    visibility: hidden;
    background-color: #ffffff;
    transform: translate(0%, 0%);
    z-index: 999;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 4px;
}

#response {
    width: 50vw;
    height: 50vw;
    overflow: scroll;
}

#category {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.category_select, #category_selected {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 4px 10px;
}

.category_select:hover {
    background-color: rgb(90, 90, 90);
    color: #ffffff;
}

.category_select.active {
    background-color: red;
    color: #ffffff;
}

#category_title {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 6px;
}

.commentCard_container {
    border: 1px solid #000000;
    border-left: 6px solid purple;
    padding: 10px;
    font-size: 1.3em;
}

.commentCard_container:hover {
    background-color: red;
    color: #ffffff;
}

.commentCard_banner {
    display: flex;
    padding: 6px 0px;
    gap: 6px;
    align-items: center;
}

.commentCard_reviewer {
    font-weight: 700;
}

.commentCard_timestamp {
    font-size: 0.7em;
}

.commentCard_response {
    padding: 6px 0px;
}

#container {
    display: flex;
    border: 1px solid #000000;
}

.commentCard_template {
    display: none;
}

.commentCard_close {
    font-size: 0.7em;
    margin-left: auto;
    border: 1px solid #000000;
    padding: 2px 6px;
    background-color: white;
    color: #000000;
    cursor: pointer;
}