/* .comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
} */

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.username {
    font-weight: 600;
    margin-right: 0.5rem;
}

.timestamp {
    color: #666;
    font-size: 0.875rem;
}

.comment-content {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.comment-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.875rem;
}

.comment-actions button:hover {
    color: #2563eb;
}

.reply-form {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 4px;
}

/* .replies-container {
    margin-left: 2rem;
    margin-top: 1rem;
    border-left: 2px solid #e5e7eb;
    padding-left: 1rem;
} */

.notification {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 4px;
    color: white;
    z-index: 1000;
}

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}