/* Redesigned Comment Section Styles */

.comments-area {
    margin-top: 2.5rem;
    font-family: 'Mukta', sans-serif;
}

/* Header & Tabs */
.comment-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    /* Very light blue/gray as in image */
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.comment-header-title {
    color: #1e40af;
    /* Deep blue for title */
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.comment-tabs {
    display: flex;
    gap: 0.75rem;
}

.comment-tab {
    padding: 0.4rem 1.25rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #e2e8f0;
    color: #475569;
}

.comment-tab.active {
    background-color: #1e40af;
    color: white;
}

.comment-tab:hover:not(.active) {
    background-color: #cbd5e1;
}

/* Comment Form */
.comment-form-v2-container {
    background-color: #f4f4f4;
    /* Gray background as in image */
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

#commentform textarea#comment {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    resize: none;
    font-size: 1.1rem;
    color: #4b5563;
    padding: 0;
    margin-bottom: 1rem;
}

#commentform textarea#comment::placeholder {
    color: #9ca3af;
}

.comment-submit-container {
    display: flex;
    justify-content: flex-end;
}

#commentform .submit-btn-v2 {
    background-color: #dbeafe;
    /* Light blue pill as in image */
    color: #1e40af;
    font-weight: 800;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

#commentform .submit-btn-v2:hover {
    background-color: #bfdbfe;
    transform: scale(1.02);
}

/* Labels and Notes (Hidden or simplified for that "simple" look) */
.comment-notes,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 1rem;
}

.comments-area label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #475569;
}

.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: white;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-item-v2 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
}

.comment-item-v2:last-child {
    border-bottom: none;
}