#reportModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.report-modal {
    width: 400px;
    max-width: 90%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 5px;

    position: relative;
    box-sizing: border-box;
    font-size: large;
}

.close-report-modal {
    position: absolute;
    top: 10px;
    right: 10px;

    background: none;
    border: none;

    font-size: large;
    cursor: pointer;
    color: var(--text-color);
}

#reportMessage,
#reportReason {
    background-color: var(--secondary-color);
    color: var(--text-color);
    outline: none;
    border: none;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}
#reportReason {
    cursor: pointer;
}
#reportMessage {
    min-height: 100px;
    width: 100%;
}
#submitReportBtn {
    padding: 5px;
    border-radius: 5px;
    background-color: var(--text-color);
    color: var(--background-color);
    width: 100%;
}
#submitReportBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
#letterCountContainer {
    width: 100%;
    height: 2px;
}
#letterCountBar {
    height: 100%;
    width: 0%;
    background-color: var(--site-theme-color);
}







/* Report review css */
#reportsContainer {
    margin: auto;
    margin-top: 125px;
    min-width: 400px;
    max-width: 800px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}
.report-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.report-content-wrapper {
    background-color: var(--secondary-color);
    border: 1px solid var(--third-color);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.report-content-wrapper > .report-content-title {
    font-size: small;
    font-weight: bold;
    color: var(--text-color);
}

.report-content-wrapper > .report-content {
    margin: 0;
    background-color: var(--background-color);
    padding: 5px;
    border-radius: 5px;
}
.report-content-wrapper > a {
    font-weight: bold;
    color: var(--text-color);
}
.report-target-profile {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.report-target-profile > span {
    font-weight: bold;
}
.report-target-profile > img {
    height: 50px;
    width: 50px;
    border-radius: 999px;
}

.report-action-btn {
    background-color: var(--background-color);
    padding: 3px;
    border-radius: 5px;
    border: 1px solid var(--third-color);
    color: var(--text-color);
}

.report-action-btn:disabled {
    opacity: 0.25;
    cursor: default;
}
.report-card {
    box-sizing: border-box;
}
.report-card > a {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--background-color);
}
.report-card > a:hover {
    border-color: var(--third-color);
}
.report-list {
    max-height: 300px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: transparent;
}

.report-list-quiz-thumbnail,
.report-list-pfp {
    border-radius: 10px;
    background-color: var(--secondary-color);
}
.report-list-quiz-thumbnail {
    width: 150px;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center center;
}
.report-list-pfp {
    width: 50px;
    aspect-ratio: 1;
    background-repeat: no-repeat;
}