#report-view {
    height: 100%;
    width: 100%;
    overflow: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    font-family: pixel;
}
    #report-header-text {
        margin: 2vmax;
    }
    #report-container {
        border-bottom: 0.3vmax solid rgb(110,110,110);
        border-right: 0.3vmax solid rgb(196,196,196);
        border-left: 0.3vmax solid rgb(44, 39, 39);
        border-top: 0.3vmax solid rgb(154,154,154);
        background-color: #888888;
        display: flex;
        flex-direction: column;
        padding: 0.5vmax;
        margin: 0 2vmax 2vmax 2vmax;
    }
        #report-selected-category,
        .report-unselected-category {
            border-bottom: 0.3vmax solid rgb(110,110,110);
            border-right: 0.3vmax solid rgb(196,196,196);
            border-left: 0.3vmax solid rgb(68,68,68);
            background-color: #999999;
            padding: 0.2vmax;
        }
            #report-selected-category:hover,
            .report-unselected-category:hover {
                background-color: #aaaaaa;
                cursor: pointer;
            }
        #report-selected-category {
            border-top: 0.3vmax solid rgb(154,154,154);
            display: flex;
            justify-content: space-between;
        }
        #report-container > input {
            border-width: 0.3vmax;
        }
        #report-dropdown-arrow {
            aspect-ratio: 1 / 1;
            height: 90%;
            margin-left: 1vmax;
            image-rendering: pixelated;
        }
        #report-comment-input {
            border-bottom: 0.3vmax solid rgb(110,110,110);
            border-right: 0.3vmax solid rgb(196,196,196);
            border-left: 0.3vmax solid rgb(68,68,68);
            border-top: 0.3vmax solid rgb(154,154,154);
            outline: none;
            background-color: #999999;
            font-family: pixel_text;
        }
            #report-comment-input:hover,
            #report-comment-input:focus {
                background-color: #aaaaaa;
            }
        .report-titles {
            margin: 0.5vmax 0 0.5vmax 0;
        }
        .report-error {
            text-align: center;
            color: #ff0000;
            margin: 0.5vmax;
        }
        #report-confirm {
            width: fit-content;
            margin: 1vmax auto 0 auto;
            padding: 0.5vmax;
            text-align: center;
        }
        #report-loading {
            margin: 1vmax auto 0 auto;
        }
        #report-message {
            text-align: center;
            margin: 1vmax;
        }