/* ===========================
   COMMENTS SECTION STYLES
   =========================== */
.comments-area {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.comments-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #62b143;
    padding-bottom: 10px;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    gap: 15px;
}

/* Comment Avatar */
.comment-avatar img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* Comment Meta (Name & Date) */
.comment-meta {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.comment-author {
    font-weight: bold;
    font-size: 16px;
    color: #62b143;
}

.comment-date {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

/* Comment Content */
.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-top: 8px;
}

/* Reply Button on Top Right */
.comment-reply {
    position: absolute;
    top: 10px;
    right: 10px;
}

.comment-reply a {
    background: #62b143;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.comment-reply a:hover {
    background: #4d8b35;
}


/* ===========================
   COMMENT FORM STYLES
   =========================== */
.comment-respond {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.comment-reply-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #62b143;
    padding-bottom: 8px;
}

/* Logged-in user text */
.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.logged-in-as a {
    color: #62b143;
    text-decoration: none;
    font-weight: bold;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Required fields note */
.comment-notes {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Form Labels */
.comment-form label {
    font-weight: bold;
    font-size: 14px;
    color: #444;
}

/* Input & Textarea Styling */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #f8f8f8;
    transition: border 0.3s ease;
}

.comment-form textarea {
    height: 120px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #62b143;
    outline: none;
    background: white;
}

/* Submit Button */
.form-submit input {
    background: #62b143;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}

.form-submit input:hover {
    background: #4d8b35;
}


