.feed-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px; 
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

/* Əgər bu birinci kartdırsa (yuxarıya bitişik olsun deyə) */
.feed-card:first-child {
    border-radius: 0 0 12px 12px;
    margin-top: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between; /* Adı sola, menyunu tam sağa sıxır */
    align-items: flex-start; /* Ad və menyunu yuxarı xətt üzrə bərabərləyir */
    width: 100%;
}

.user-info {
    display: flex;
    align-items: center;
}

.avatar-wrapper {
    position: relative;
    margin-right: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}


.user-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.card-content {
    font-size: 14px;
    color: #222;
    margin-bottom: 15px;
    padding: 0 1px;
}

/* Düymələr hissəsi */
.card-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    gap: 8px;
}

.action-btn.circle {
    padding: 8px 12px;
}

.action-btn i {
    margin-right: 6px;
    font-size: 18px;
}

.action-btn:hover {
    background: #e5e5e5;
}


