.comments-section {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comments-header h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Form */
.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    font-family: inherit;
    resize: vertical;
    transition: 0.2s;
}

.comment-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-footer {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

/* List */
.comment-item {
    margin-bottom: 20px;
}

.comment-children {
    margin-left: 40px;
    border-left: 2px solid #f0f0f0;
    padding-left: 20px;
    margin-top: 20px;
}

.comment-avatar {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    overflow: hidden;
}

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

.comment-author {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.comment-date {
    color: #999;
    font-size: 12px;
}

.comment-message {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.comment-actions {
    margin-top: 8px;
    font-size: 13px;
}

.comment-actions button {
    background: none;
    border: none;
    padding: 0;
    margin-right: 15px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
}

.comment-actions button:hover {
    text-decoration: underline;
}

.text-danger {
    color: #dc3545 !important;
}

.no-comments {
    text-align: center;
    color: #888;
    padding: 20px;
}

.comment-auth-msg {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}