/* Styles for the comments template part (comments.php) */

/* Comments Styling */
.comments-area {
    background: rgba(0, 123, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comment-list li {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    padding-bottom: 20px;
}

.comment-meta {
    margin-bottom: 5px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-content p {
    margin: 10px 0 0;
}

.comment-reply-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

.comment-form-wrapper .form-control {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.comment-form-wrapper label {
    font-weight: 500;
    margin-bottom: 5px;
}

body.dark-mode .comments-area {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
