.comments-section {
    font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

/* Textarea styles */
#reviewContent {
    min-height: 100px;
}

/* Pagination styling */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    text-decoration: none;
}

.pagination li.active span {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.pagination li a:hover {
    background-color: #f3f4f6;
}

/* Animation for showing/hiding reply form */
.reply-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.reply-form:not(.hidden) {
    max-height: 300px;
}

/* Reaction button hover effects */
.like-btn:hover svg,
.like-btn.active svg {
    color: #2563eb;
}

.dislike-btn:hover svg,
.dislike-btn.active svg {
    color: #dc2626;
}

/* Reply section styling */
.replies {
    position: relative;
}

.replies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
}
