/* Estilos para el feed */

.feed-card {
    border-radius: 6px !important;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feed-card-header {
    padding: 15px;
    display: flex;
    align-items: center;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2F8F8F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.user-activity-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

