.comment-area {
    margin-top: 20px;
}

.no-comments {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.comment-actions, .reply-actions {
    display: flex;
}

.comment-actions button, .reply-actions button,
.comment-edit-actions button, .reply-edit-actions button {
    background: none;
    border: none;
    padding: 0;
    margin-right: 15px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

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

.delete-button, .cancel-button {
    color: #dc3545 !important;
}

.reply-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.reply-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reply-form, .comment-edit-form, .reply-edit-form {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.login-required {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.login-required a {
    color: var(--color-primary);
    font-weight: 600;
}