.post {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: white;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    margin: 0;
    font-size: 1rem;
}

.post-time {
    color: #666;
    font-size: 0.9rem;
}

.post-content {
    margin: 12px 0;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.post-actions button {
    padding: 6px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: none;
    cursor: pointer;
}

.post-actions button:hover {
    background-color: #f5f5f5;
}

.comment {
    
    border-left: 2px solid #e1e1e1;
    padding-left: 14px;
}
.depth-1 {
    margin-left: 20px;
    border-left: 2px solid #e1e1e1;
}
.depth-2 {
    margin-left: 40px;
    border-left: 2px solid #e1e1e1;
}

.depth-2>.requires-webln>.post-actions {
    display:none;
}

.reply-content {
    border: 1px dotted #e1e1e1;
    padding: 8px;
    margin-top: 12px;
}

.reply-input {
    width: 100%;
    height: 60px;
    margin-bottom: 8px;
}

.send-reply-button {
    padding: 6px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: none;
    cursor: pointer;
}

.send-reply-button:hover {
    background-color: #f5f5f5;
}
