.reviewer-container {
    width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .reviewer-container {
        width: 90vw;
    }
}


.reviewer-container.slide-in {
    animation: slideInRightReviewer 1s forwards;
}

.reviewer-container.slide-out {
    animation: slideOutLeftReviewer 1s forwards;
}

.reviewer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-title {
    font-weight: bold;
}

.reviewer-status {
    color: white;
    font-size: 0.9em;
    padding: 3px 8px;
    background-color: green;
    border-radius: 20px;
}

.code-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.code-column {
    width: 48%;
    padding: 10px;
    border-radius: 5px;
    background-color: #ebecf0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #333;
    overflow-x: hidden;
}

.old-code pre {
    color: #d9534f; /* Red for removed code */
}

.new-code pre {
    color: #5cb85c; /* Green for added code */
}

.comment-section {
    margin-top: 20px;
    display: none;
}

.comment-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.comment-content {
    margin-top: 10px;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comment {
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment.visible {
    opacity: 1;
}

.avatar {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 10px;
}

.avatar-neo {
    background-color: #f28b2a;
    background-image: url(/static/images/animations/neo.svg);
}

.inline-comment-1,
.inline-comment-2 {
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding: 5px;
    background-color: #f4f5f7;
    border-left: 2px solid #f28b2a;
    display: none;
    margin-left: 10px; /* Slight indent for the comment */
}

.avatar-neo-inline {
    width: 20px;
    height: 20px;
    background-color: #f28b2a;
    background-image: url(/static/images/animations/neo.svg);
    background-size: cover;
    border-radius: 50%;
    margin-right: 10px;
}

#inline-comment-text-1,
#inline-comment-text-2 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #333;
    white-space: pre-wrap;
}
.code-to-comment-1,
.code-to-comment-2 {
    background-color: transparent; /* Initially unmarked */
    transition: background-color 0.3s ease;
}

@keyframes slideInRightReviewer {
    0% {
        /* transform: translateX(100%); */
        opacity: 0;
    }
    100% {
        /* transform: translateX(0); */
        opacity: 1;
    }
}

@keyframes slideOutLeftReviewer {
    0% {
        /* transform: translateX(0); */
        opacity: 1;
    }
    100% {
        /* transform: translateX(-100%); */
        opacity: 0;
    }
}