/* Main comments area */
.comments-area {
        border-top: 1px solid #eee;
    padding: 25px;
    margin-top: 50px;
    border-radius: 5px;
}

/* Comments title */
.comments-area h2.comments-title,
.comments-area h3.comments-title {
    margin-bottom: 35px;
    color: #2a2a2a;
    font-size: 24px;
    font-weight: 600;
}

/* Comment list */
.commentlist,
.comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual comment container */
.comment-list .comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
}

/* Comment meta data */
.comment-meta {
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author .avatar {
    margin-right: 15px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    font-style: normal;
    color: #333;
}

.comment-metadata {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.comment-metadata a {
    color: #888;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #333;
}

/* Comment content */
.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* Reply link */
.reply {
    margin-top: 15px;
}

.comment-reply-link {
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ccc;
}

/* Nested comments */
.comment-list .children {
    list-style: none;
    margin: 20px 0 0 45px;
}

/* Comment form */
.comment-respond {
    /* margin-top: 50px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 4px; */
}

#reply-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.comment-form {
    margin-top: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.says{
	margin-left:5px;
}

.comment-form input[type="submit"] {
    background-color: #008282;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #008282;
}

/* Required field indicator */
.required {
    color: #e33;
}

/* Comment notes */
.comment-notes {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Pingbacks and trackbacks */
.pingback,
.trackback {
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #ddd;
    margin-bottom: 15px;
}

.pingback .url,
.trackback .url {
    color: #333;
    text-decoration: none;
}