.post {
    background: white;
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 15px;
}

.post-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.post-content {
    margin-bottom: 10px;
    font-size: 15px;
}

.post-actions {
    display: flex;
    gap: 10px;
}

.like-btn {
    background: none;
    border: none;
    color: #e0245e;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.like-btn:hover {
    text-decoration: underline;
}

.navbar {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.navbar button {
    background: #1d9bf0;
    color: white;
    border-radius: 20px;
    padding: 6px 14px;
}

.replies {
    margin-top: 10px;
    padding-left: 15px;
    border-left: 2px solid #eee;
}

.reply {
    background: #f7f7f7;
    padding: 8px;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 14px;
}

.reply-box {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.reply-box input {
    flex: 1;
}

