.comments-widget {
    margin: 30px 0;
    font-family: Arial, sans-serif;
}

.comments-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.comment-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ddd;
    position: relative;
}

.comment-item .comment-item {
    margin-left: 30px;
    background: #f0f0f0;
    border-left-color: #ccc;
}

.comment-header {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-author {
    font-weight: bold;
    color: #337ab7;
}

.comment-date {
    color: #777;
    font-size: 0.9em;
}

.comment-content {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

.comment-actions {
    margin-top: 10px;
}

.comment-reply-hidden {
    display: none;
}

.show-replies-btn {
    padding: 5px 0;
    border: none;
    background: none;
    color: #337ab7;
    cursor: pointer;
    font-size: 0.9em;
    display: inline-block;
    margin-top: 5px;
}

.show-replies-btn:hover {
    color: #23527c;
    text-decoration: underline;
}

.no-comments {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
    color: #777;
    margin-bottom: 20px;
    border: 1px dashed #ddd;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.reply-btn {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}